/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): */ /* nsISupports wrappers for single primitive pieces of data. */ #include "nsISupports.idl" /** * These first three are pointer types and do data copying * using the nsIAllocator. Be careful! */ [scriptable, uuid(d18290a0-4a1c-11d3-9890-006008962422)] interface nsISupportsID : nsISupports { attribute nsIDPtr data; string toString(); }; [scriptable, uuid(d65ff270-4a1c-11d3-9890-006008962422)] interface nsISupportsString : nsISupports { attribute string data; string toString(); // do not include space for null termination in |length|. It is handled // internally. void setDataWithLength(in unsigned long length, [size_is(length)] in string data); }; [scriptable, uuid(d79dc970-4a1c-11d3-9890-006008962422)] interface nsISupportsWString : nsISupports { attribute wstring data; wstring toString(); // do not include space for null termination in |length|. It is handled // internally. |length| is in characters, not in bytes. void setDataWithLength(in unsigned long length, [size_is(length)] in wstring data); }; /** * The rest are truly primitive and are passed by value */ [scriptable, uuid(ddc3b490-4a1c-11d3-9890-006008962422)] interface nsISupportsPRBool : nsISupports { attribute PRBool data; string toString(); }; [scriptable, uuid(dec2e4e0-4a1c-11d3-9890-006008962422)] interface nsISupportsPRUint8 : nsISupports { attribute PRUint8 data; string toString(); }; [scriptable, uuid(dfacb090-4a1c-11d3-9890-006008962422)] interface nsISupportsPRUint16 : nsISupports { attribute PRUint16 data; string toString(); }; [scriptable, uuid(e01dc470-4a1c-11d3-9890-006008962422)] interface nsISupportsPRUint32 : nsISupports { attribute PRUint32 data; string toString(); }; [scriptable, uuid(e13567c0-4a1c-11d3-9890-006008962422)] interface nsISupportsPRUint64 : nsISupports { attribute PRUint64 data; string toString(); }; [scriptable, uuid(e2563630-4a1c-11d3-9890-006008962422)] interface nsISupportsPRTime : nsISupports { attribute PRTime data; string toString(); }; [scriptable, uuid(e2b05e40-4a1c-11d3-9890-006008962422)] interface nsISupportsChar : nsISupports { attribute char data; string toString(); }; [scriptable, uuid(e30d94b0-4a1c-11d3-9890-006008962422)] interface nsISupportsPRInt16 : nsISupports { attribute PRInt16 data; string toString(); }; [scriptable, uuid(e36c5250-4a1c-11d3-9890-006008962422)] interface nsISupportsPRInt32 : nsISupports { attribute PRInt32 data; string toString(); }; [scriptable, uuid(e3cb0ff0-4a1c-11d3-9890-006008962422)] interface nsISupportsPRInt64 : nsISupports { attribute PRInt64 data; string toString(); }; [scriptable, uuid(abeaa390-4ac0-11d3-baea-00805f8a5dd7)] interface nsISupportsFloat : nsISupports { attribute float data; string toString(); }; [scriptable, uuid(b32523a0-4ac0-11d3-baea-00805f8a5dd7)] interface nsISupportsDouble : nsISupports { attribute double data; string toString(); }; [scriptable, uuid(464484f0-568d-11d3-baf8-00805f8a5dd7)] interface nsISupportsVoid : nsISupports { /* * This would be: "[noscript] attribute voidPtr data;" but for... * http://bugzilla.mozilla.org/show_bug.cgi?id=11454 */ [noscript] void GetData([shared,retval] out voidPtr aData); [noscript] void SetData(in voidPtr aData); string toString(); }; ///////////////////////////////////////////////////////////////////////// %{C++ // {ACF8DC40-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_ID_CID \ { 0xacf8dc40, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_ID_CONTRACTID "@mozilla.org/supports-id;1" #define NS_SUPPORTS_ID_CLASSNAME "Supports ID" // {ACF8DC41-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_STRING_CID \ { 0xacf8dc41, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_STRING_CONTRACTID "@mozilla.org/supports-string;1" #define NS_SUPPORTS_STRING_CLASSNAME "Supports String" // {ACF8DC42-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_WSTRING_CID \ { 0xacf8dc42, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_WSTRING_CONTRACTID "@mozilla.org/supports-wstring;1" #define NS_SUPPORTS_WSTRING_CLASSNAME "Supports WString" // {ACF8DC43-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRBOOL_CID \ { 0xacf8dc43, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRBOOL_CONTRACTID "@mozilla.org/supports-PRBool;1" #define NS_SUPPORTS_PRBOOL_CLASSNAME "Supports PRBool" // {ACF8DC44-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRUINT8_CID \ { 0xacf8dc44, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRUINT8_CONTRACTID "@mozilla.org/supports-PRUint8;1" #define NS_SUPPORTS_PRUINT8_CLASSNAME "Supports PRUint8" // {ACF8DC46-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRUINT16_CID \ { 0xacf8dc46, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRUINT16_CONTRACTID "@mozilla.org/supports-PRUint16;1" #define NS_SUPPORTS_PRUINT16_CLASSNAME "Supports PRUint16" // {ACF8DC47-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRUINT32_CID \ { 0xacf8dc47, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRUINT32_CONTRACTID "@mozilla.org/supports-PRUint32;1" #define NS_SUPPORTS_PRUINT32_CLASSNAME "Supports PRUint32" // {ACF8DC48-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRUINT64_CID \ { 0xacf8dc48, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRUINT64_CONTRACTID "@mozilla.org/supports-PRUint64;1" #define NS_SUPPORTS_PRUINT64_CLASSNAME "Supports PRUint64" // {ACF8DC49-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRTIME_CID \ { 0xacf8dc49, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRTIME_CONTRACTID "@mozilla.org/supports-PRTime;1" #define NS_SUPPORTS_PRTIME_CLASSNAME "Supports PRTime" // {ACF8DC4A-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_CHAR_CID \ { 0xacf8dc4a, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_CHAR_CONTRACTID "@mozilla.org/supports-char;1" #define NS_SUPPORTS_CHAR_CLASSNAME "Supports Char" // {ACF8DC4B-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRINT16_CID \ { 0xacf8dc4b, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRINT16_CONTRACTID "@mozilla.org/supports-PRInt16;1" #define NS_SUPPORTS_PRINT16_CLASSNAME "Supports PRInt16" // {ACF8DC4C-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRINT32_CID \ { 0xacf8dc4c, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRINT32_CONTRACTID "@mozilla.org/supports-PRInt32;1" #define NS_SUPPORTS_PRINT32_CLASSNAME "Supports PRInt32" // {ACF8DC4D-4A25-11d3-9890-006008962422} #define NS_SUPPORTS_PRINT64_CID \ { 0xacf8dc4d, 0x4a25, 0x11d3, \ { 0x98, 0x90, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } } #define NS_SUPPORTS_PRINT64_CONTRACTID "@mozilla.org/supports-PRInt64;1" #define NS_SUPPORTS_PRINT64_CLASSNAME "Supports PRInt64" // {CBF86870-4AC0-11d3-BAEA-00805F8A5DD7} #define NS_SUPPORTS_FLOAT_CID \ { 0xcbf86870, 0x4ac0, 0x11d3, \ { 0xba, 0xea, 0x0, 0x80, 0x5f, 0x8a, 0x5d, 0xd7 } } #define NS_SUPPORTS_FLOAT_CONTRACTID "@mozilla.org/supports-float;1" #define NS_SUPPORTS_FLOAT_CLASSNAME "Supports float" // {CBF86871-4AC0-11d3-BAEA-00805F8A5DD7} #define NS_SUPPORTS_DOUBLE_CID \ { 0xcbf86871, 0x4ac0, 0x11d3, \ { 0xba, 0xea, 0x0, 0x80, 0x5f, 0x8a, 0x5d, 0xd7 } } #define NS_SUPPORTS_DOUBLE_CONTRACTID "@mozilla.org/supports-double;1" #define NS_SUPPORTS_DOUBLE_CLASSNAME "Supports double" // {AF10F3E0-568D-11d3-BAF8-00805F8A5DD7} #define NS_SUPPORTS_VOID_CID \ { 0xaf10f3e0, 0x568d, 0x11d3, \ { 0xba, 0xf8, 0x0, 0x80, 0x5f, 0x8a, 0x5d, 0xd7 } } #define NS_SUPPORTS_VOID_CONTRACTID "@mozilla.org/supports-void;1" #define NS_SUPPORTS_VOID_CLASSNAME "Supports void" extern NS_COM nsresult NS_NewISupportsPRBool (nsISupportsPRBool ** aResult); %}