This commit is contained in:
scc%netscape.com 1999-08-22 20:54:08 +00:00
Родитель a285a87f2d
Коммит 83feff8821
4 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -342,6 +342,8 @@ struct nsIRegistryNode : public nsISupports {
| Int32). |
------------------------------------------------------------------------------*/
struct nsIRegistryValue : public nsISupports {
static const nsIID& GetIID() { static nsIID iid = NS_IREGISTRYVALUE_IID; return iid; }
NS_IMETHOD GetName( char **result ) = 0;
NS_IMETHOD GetValueType( uint32 *result ) = 0;
NS_IMETHOD GetValueLength( uint32 *result ) = 0;

Просмотреть файл

@ -35,6 +35,8 @@
*/
class nsISizeOfHandler : public nsISupports {
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISIZEOF_HANDLER_IID)
/**
* Add in a simple size value to the running total.
* Always returns NS_OK.

Просмотреть файл

@ -32,6 +32,8 @@ class nsString;
*/
class nsIUnicharInputStream : public nsISupports {
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IUNICHAR_INPUT_STREAM_IID)
NS_IMETHOD Read(PRUnichar* aBuf,
PRUint32 aOffset,
PRUint32 aCount,

Просмотреть файл

@ -44,9 +44,10 @@ class nsProxyEventClass;
{ 0xeea90d45, 0xb059, 0x11d2, \
{ 0x91, 0x5e, 0xc1, 0x2b, 0x69, 0x6c, 0x93, 0x33 } }
class nsProxyEventClass : public nsISupports
{
NS_DEFINE_STATIC_IID_ACCESSOR(NS_PROXYEVENT_CLASS_IID)
// all the interface method declarations...
NS_DECL_ISUPPORTS