|
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/usr/lib/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/image/public/imgICache.idl
*/
#ifndef __gen_imgICache_h__
#define __gen_imgICache_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
class nsIURI; /* forward declaration */
class imgIRequest; /* forward declaration */
class nsIProperties; /* forward declaration */
/* starting interface: imgICache */
#define IMGICACHE_IID_STR "f1b74aae-5661-4753-a21c-66dd644afebc"
#define IMGICACHE_IID \
{0xf1b74aae, 0x5661, 0x4753, \
{ 0xa2, 0x1c, 0x66, 0xdd, 0x64, 0x4a, 0xfe, 0xbc }}
class NS_NO_VTABLE imgICache : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(IMGICACHE_IID)
/* void clearCache (in boolean chrome); */
NS_IMETHOD ClearCache(bool chrome) = 0;
/* void removeEntry (in nsIURI uri); */
NS_IMETHOD RemoveEntry(nsIURI *uri) = 0;
/* nsIProperties findEntryProperties (in nsIURI uri); */
NS_IMETHOD FindEntryProperties(nsIURI *uri, nsIProperties * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(imgICache, IMGICACHE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_IMGICACHE \
NS_IMETHOD ClearCache(bool chrome); \
NS_IMETHOD RemoveEntry(nsIURI *uri); \
NS_IMETHOD FindEntryProperties(nsIURI *uri, nsIProperties * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_IMGICACHE(_to) \
NS_IMETHOD ClearCache(bool chrome) { return _to ClearCache(chrome); } \
NS_IMETHOD RemoveEntry(nsIURI *uri) { return _to RemoveEntry(uri); } \
NS_IMETHOD FindEntryProperties(nsIURI *uri, nsIProperties * *_retval) { return _to FindEntryProperties(uri, _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_IMGICACHE(_to) \
NS_IMETHOD ClearCache(bool chrome) { return !_to ? NS_ERROR_NULL_POINTER : _to->ClearCache(chrome); } \
NS_IMETHOD RemoveEntry(nsIURI *uri) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveEntry(uri); } \
NS_IMETHOD FindEntryProperties(nsIURI *uri, nsIProperties * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->FindEntryProperties(uri, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public imgICache
{
public:
NS_DECL_ISUPPORTS
NS_DECL_IMGICACHE
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(_MYCLASS_, imgICache)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* void clearCache (in boolean chrome); */
NS_IMETHODIMP _MYCLASS_::ClearCache(bool chrome)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeEntry (in nsIURI uri); */
NS_IMETHODIMP _MYCLASS_::RemoveEntry(nsIURI *uri)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIProperties findEntryProperties (in nsIURI uri); */
NS_IMETHODIMP _MYCLASS_::FindEntryProperties(nsIURI *uri, nsIProperties * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_imgICache_h__ */