/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsITextToSubURI.idl */ #ifndef __gen_nsITextToSubURI_h__ #define __gen_nsITextToSubURI_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 // {8B042E22-6F87-11d3-B3C8-00805F8A6670} #define NS_TEXTTOSUBURI_CID { 0x8b042e22, 0x6f87, 0x11d3, { 0xb3, 0xc8, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70 } } #define NS_ITEXTTOSUBURI_CONTRACTID "@mozilla.org/intl/texttosuburi;1" /* starting interface: nsITextToSubURI */ #define NS_ITEXTTOSUBURI_IID_STR "8b042e24-6f87-11d3-b3c8-00805f8a6670" #define NS_ITEXTTOSUBURI_IID \ {0x8b042e24, 0x6f87, 0x11d3, \ { 0xb3, 0xc8, 0x00, 0x80, 0x5f, 0x8a, 0x66, 0x70 }} class NS_NO_VTABLE nsITextToSubURI : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_ITEXTTOSUBURI_IID) /* string ConvertAndEscape (in string charset, in wstring text); */ NS_IMETHOD ConvertAndEscape(const char *charset, const PRUnichar *text, char **_retval) = 0; /* wstring UnEscapeAndConvert (in string charset, in string text); */ NS_IMETHOD UnEscapeAndConvert(const char *charset, const char *text, PRUnichar **_retval) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSITEXTTOSUBURI \ NS_IMETHOD ConvertAndEscape(const char *charset, const PRUnichar *text, char **_retval); \ NS_IMETHOD UnEscapeAndConvert(const char *charset, const char *text, PRUnichar **_retval); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSITEXTTOSUBURI(_to) \ NS_IMETHOD ConvertAndEscape(const char *charset, const PRUnichar *text, char **_retval) { return _to ConvertAndEscape(charset, text, _retval); } \ NS_IMETHOD UnEscapeAndConvert(const char *charset, const char *text, PRUnichar **_retval) { return _to UnEscapeAndConvert(charset, text, _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_NSITEXTTOSUBURI(_to) \ NS_IMETHOD ConvertAndEscape(const char *charset, const PRUnichar *text, char **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConvertAndEscape(charset, text, _retval); } \ NS_IMETHOD UnEscapeAndConvert(const char *charset, const char *text, PRUnichar **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->UnEscapeAndConvert(charset, text, _retval); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsTextToSubURI : public nsITextToSubURI { public: NS_DECL_ISUPPORTS NS_DECL_NSITEXTTOSUBURI nsTextToSubURI(); virtual ~nsTextToSubURI(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsTextToSubURI, nsITextToSubURI) nsTextToSubURI::nsTextToSubURI() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsTextToSubURI::~nsTextToSubURI() { /* destructor code */ } /* string ConvertAndEscape (in string charset, in wstring text); */ NS_IMETHODIMP nsTextToSubURI::ConvertAndEscape(const char *charset, const PRUnichar *text, char **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* wstring UnEscapeAndConvert (in string charset, in string text); */ NS_IMETHODIMP nsTextToSubURI::UnEscapeAndConvert(const char *charset, const char *text, PRUnichar **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsITextToSubURI_h__ */ .