|
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/root/usr/lib64/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/xpcom/base/nsIErrorService.idl
*/
#ifndef __gen_nsIErrorService_h__
#define __gen_nsIErrorService_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: nsIErrorService */
#define NS_IERRORSERVICE_IID_STR "e72f94b2-5f85-11d4-9877-00c04fa0cf4a"
#define NS_IERRORSERVICE_IID \
{0xe72f94b2, 0x5f85, 0x11d4, \
{ 0x98, 0x77, 0x00, 0xc0, 0x4f, 0xa0, 0xcf, 0x4a }}
class NS_NO_VTABLE nsIErrorService : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IERRORSERVICE_IID)
/* void registerErrorStringBundle (in short errorModule, in string stringBundleURL); */
NS_IMETHOD RegisterErrorStringBundle(int16_t errorModule, const char * stringBundleURL) = 0;
/* void unregisterErrorStringBundle (in short errorModule); */
NS_IMETHOD UnregisterErrorStringBundle(int16_t errorModule) = 0;
/* string getErrorStringBundle (in short errorModule); */
NS_IMETHOD GetErrorStringBundle(int16_t errorModule, char * *_retval) = 0;
/* void registerErrorStringBundleKey (in nsresult error, in string stringBundleKey); */
NS_IMETHOD RegisterErrorStringBundleKey(nsresult error, const char * stringBundleKey) = 0;
/* void unregisterErrorStringBundleKey (in nsresult error); */
NS_IMETHOD UnregisterErrorStringBundleKey(nsresult error) = 0;
/* string getErrorStringBundleKey (in nsresult error); */
NS_IMETHOD GetErrorStringBundleKey(nsresult error, char * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIErrorService, NS_IERRORSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIERRORSERVICE \
NS_IMETHOD RegisterErrorStringBundle(int16_t errorModule, const char * stringBundleURL); \
NS_IMETHOD UnregisterErrorStringBundle(int16_t errorModule); \
NS_IMETHOD GetErrorStringBundle(int16_t errorModule, char * *_retval); \
NS_IMETHOD RegisterErrorStringBundleKey(nsresult error, const char * stringBundleKey); \
NS_IMETHOD UnregisterErrorStringBundleKey(nsresult error); \
NS_IMETHOD GetErrorStringBundleKey(nsresult error, char * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIERRORSERVICE(_to) \
NS_IMETHOD RegisterErrorStringBundle(int16_t errorModule, const char * stringBundleURL) { return _to RegisterErrorStringBundle(errorModule, stringBundleURL); } \
NS_IMETHOD UnregisterErrorStringBundle(int16_t errorModule) { return _to UnregisterErrorStringBundle(errorModule); } \
NS_IMETHOD GetErrorStringBundle(int16_t errorModule, char * *_retval) { return _to GetErrorStringBundle(errorModule, _retval); } \
NS_IMETHOD RegisterErrorStringBundleKey(nsresult error, const char * stringBundleKey) { return _to RegisterErrorStringBundleKey(error, stringBundleKey); } \
NS_IMETHOD UnregisterErrorStringBundleKey(nsresult error) { return _to UnregisterErrorStringBundleKey(error); } \
NS_IMETHOD GetErrorStringBundleKey(nsresult error, char * *_retval) { return _to GetErrorStringBundleKey(error, _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_NSIERRORSERVICE(_to) \
NS_IMETHOD RegisterErrorStringBundle(int16_t errorModule, const char * stringBundleURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->RegisterErrorStringBundle(errorModule, stringBundleURL); } \
NS_IMETHOD UnregisterErrorStringBundle(int16_t errorModule) { return !_to ? NS_ERROR_NULL_POINTER : _to->UnregisterErrorStringBundle(errorModule); } \
NS_IMETHOD GetErrorStringBundle(int16_t errorModule, char * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetErrorStringBundle(errorModule, _retval); } \
NS_IMETHOD RegisterErrorStringBundleKey(nsresult error, const char * stringBundleKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->RegisterErrorStringBundleKey(error, stringBundleKey); } \
NS_IMETHOD UnregisterErrorStringBundleKey(nsresult error) { return !_to ? NS_ERROR_NULL_POINTER : _to->UnregisterErrorStringBundleKey(error); } \
NS_IMETHOD GetErrorStringBundleKey(nsresult error, char * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetErrorStringBundleKey(error, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsErrorService : public nsIErrorService
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIERRORSERVICE
nsErrorService();
private:
~nsErrorService();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsErrorService, nsIErrorService)
nsErrorService::nsErrorService()
{
/* member initializers and constructor code */
}
nsErrorService::~nsErrorService()
{
/* destructor code */
}
/* void registerErrorStringBundle (in short errorModule, in string stringBundleURL); */
NS_IMETHODIMP nsErrorService::RegisterErrorStringBundle(int16_t errorModule, const char * stringBundleURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void unregisterErrorStringBundle (in short errorModule); */
NS_IMETHODIMP nsErrorService::UnregisterErrorStringBundle(int16_t errorModule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* string getErrorStringBundle (in short errorModule); */
NS_IMETHODIMP nsErrorService::GetErrorStringBundle(int16_t errorModule, char * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void registerErrorStringBundleKey (in nsresult error, in string stringBundleKey); */
NS_IMETHODIMP nsErrorService::RegisterErrorStringBundleKey(nsresult error, const char * stringBundleKey)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void unregisterErrorStringBundleKey (in nsresult error); */
NS_IMETHODIMP nsErrorService::UnregisterErrorStringBundleKey(nsresult error)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* string getErrorStringBundleKey (in nsresult error); */
NS_IMETHODIMP nsErrorService::GetErrorStringBundleKey(nsresult error, char * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
// The global nsIErrorService:
#define NS_ERRORSERVICE_NAME "Error Service"
#define NS_ERRORSERVICE_CONTRACTID "@mozilla.org/xpcom/error-service;1"
#define NS_ERRORSERVICE_CID \
{ /* 744afd5e-5f8c-11d4-9877-00c04fa0cf4a */ \
0x744afd5e, \
0x5f8c, \
0x11d4, \
{0x98, 0x77, 0x00, 0xc0, 0x4f, 0xa0, 0xcf, 0x4a} \
}
#endif /* __gen_nsIErrorService_h__ */