|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/task/21573/root/proc/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/security/manager/pki/public/nsIPKIParamBlock.idl
*/
#ifndef __gen_nsIPKIParamBlock_h__
#define __gen_nsIPKIParamBlock_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIPKIParamBlock */
#define NS_IPKIPARAMBLOCK_IID_STR "b6fe3d78-1dd1-11b2-9058-ced9016984c8"
#define NS_IPKIPARAMBLOCK_IID \
{0xb6fe3d78, 0x1dd1, 0x11b2, \
{ 0x90, 0x58, 0xce, 0xd9, 0x01, 0x69, 0x84, 0xc8 }}
class NS_NO_VTABLE nsIPKIParamBlock : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPKIPARAMBLOCK_IID)
/* void setISupportAtIndex (in long index, in nsISupports object); */
NS_IMETHOD SetISupportAtIndex(int32_t index, nsISupports *object) = 0;
/* nsISupports getISupportAtIndex (in long index); */
NS_IMETHOD GetISupportAtIndex(int32_t index, nsISupports * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPKIParamBlock, NS_IPKIPARAMBLOCK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPKIPARAMBLOCK \
NS_IMETHOD SetISupportAtIndex(int32_t index, nsISupports *object); \
NS_IMETHOD GetISupportAtIndex(int32_t index, nsISupports * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPKIPARAMBLOCK(_to) \
NS_IMETHOD SetISupportAtIndex(int32_t index, nsISupports *object) { return _to SetISupportAtIndex(index, object); } \
NS_IMETHOD GetISupportAtIndex(int32_t index, nsISupports * *_retval) { return _to GetISupportAtIndex(index, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPKIPARAMBLOCK(_to) \
NS_IMETHOD SetISupportAtIndex(int32_t index, nsISupports *object) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetISupportAtIndex(index, object); } \
NS_IMETHOD GetISupportAtIndex(int32_t index, nsISupports * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetISupportAtIndex(index, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPKIParamBlock : public nsIPKIParamBlock
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPKIPARAMBLOCK
nsPKIParamBlock();
private:
~nsPKIParamBlock();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsPKIParamBlock, nsIPKIParamBlock)
nsPKIParamBlock::nsPKIParamBlock()
{
/* member initializers and constructor code */
}
nsPKIParamBlock::~nsPKIParamBlock()
{
/* destructor code */
}
/* void setISupportAtIndex (in long index, in nsISupports object); */
NS_IMETHODIMP nsPKIParamBlock::SetISupportAtIndex(int32_t index, nsISupports *object)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsISupports getISupportAtIndex (in long index); */
NS_IMETHODIMP nsPKIParamBlock::GetISupportAtIndex(int32_t index, nsISupports * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIPKIParamBlock_h__ */