123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- #ifndef __gen_nsIGlobalHistory_h__
- #define __gen_nsIGlobalHistory_h__
- #ifndef __gen_nsISupports_h__
- #include "nsISupports.h"
- #endif
- #ifndef NS_NO_VTABLE
- #define NS_NO_VTABLE
- #endif
- #define NS_IGLOBALHISTORY_IID_STR "9491c383-e3c4-11d2-bdbe-0050040a9b44"
- #define NS_IGLOBALHISTORY_IID \
- {0x9491c383, 0xe3c4, 0x11d2, \
- { 0xbd, 0xbe, 0x00, 0x50, 0x04, 0x0a, 0x9b, 0x44 }}
- class NS_NO_VTABLE nsIGlobalHistory : public nsISupports {
- public:
- NS_DEFINE_STATIC_IID_ACCESSOR(NS_IGLOBALHISTORY_IID)
-
-
- NS_IMETHOD AddPage(const char *aURL) = 0;
-
-
- NS_IMETHOD IsVisited(const char *aURL, PRBool *_retval) = 0;
- };
- #define NS_DECL_NSIGLOBALHISTORY \
- NS_IMETHOD AddPage(const char *aURL); \
- NS_IMETHOD IsVisited(const char *aURL, PRBool *_retval);
- #define NS_FORWARD_NSIGLOBALHISTORY(_to) \
- NS_IMETHOD AddPage(const char *aURL) { return _to AddPage(aURL); } \
- NS_IMETHOD IsVisited(const char *aURL, PRBool *_retval) { return _to IsVisited(aURL, _retval); }
- #define NS_FORWARD_SAFE_NSIGLOBALHISTORY(_to) \
- NS_IMETHOD AddPage(const char *aURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddPage(aURL); } \
- NS_IMETHOD IsVisited(const char *aURL, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsVisited(aURL, _retval); }
- #if 0
- class nsGlobalHistory : public nsIGlobalHistory
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSIGLOBALHISTORY
- nsGlobalHistory();
- private:
- ~nsGlobalHistory();
- protected:
-
- };
- NS_IMPL_ISUPPORTS1(nsGlobalHistory, nsIGlobalHistory)
- nsGlobalHistory::nsGlobalHistory()
- {
-
- }
- nsGlobalHistory::~nsGlobalHistory()
- {
-
- }
- NS_IMETHODIMP nsGlobalHistory::AddPage(const char *aURL)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
- NS_IMETHODIMP nsGlobalHistory::IsVisited(const char *aURL, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
- #endif
- #define NS_GLOBALHISTORY_CONTRACTID \
- "@mozilla.org/browser/global-history;1"
- #endif
|