2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-04-24 02:38:54 +00:00
|
|
|
|
2001-09-27 03:43:00 +00:00
|
|
|
/**
|
|
|
|
* Root idl declarations to be used by all.
|
|
|
|
*/
|
1999-04-24 02:38:54 +00:00
|
|
|
|
|
|
|
%{C++
|
1999-06-03 21:50:47 +00:00
|
|
|
|
1999-06-09 03:19:10 +00:00
|
|
|
#include "nscore.h"
|
2013-07-03 15:56:26 +00:00
|
|
|
typedef int64_t PRTime;
|
1999-06-03 21:50:47 +00:00
|
|
|
|
2002-03-05 02:22:02 +00:00
|
|
|
/*
|
|
|
|
* Forward declarations for new string types
|
|
|
|
*/
|
|
|
|
class nsAString;
|
|
|
|
class nsACString;
|
|
|
|
|
1999-04-24 02:38:54 +00:00
|
|
|
/*
|
|
|
|
* Start commenting out the C++ versions of the below in the output header
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
%}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
typedef boolean bool ;
|
2012-08-22 15:56:38 +00:00
|
|
|
typedef octet uint8_t ;
|
|
|
|
typedef unsigned short uint16_t ;
|
2014-01-04 15:02:17 +00:00
|
|
|
typedef unsigned short char16_t;
|
2012-08-22 15:56:38 +00:00
|
|
|
typedef unsigned long uint32_t ;
|
|
|
|
typedef unsigned long long uint64_t ;
|
2012-07-19 09:53:30 +00:00
|
|
|
typedef long long PRTime ;
|
2012-08-22 15:56:38 +00:00
|
|
|
typedef short int16_t ;
|
|
|
|
typedef long int32_t ;
|
|
|
|
typedef long long int64_t ;
|
1999-04-24 02:38:54 +00:00
|
|
|
|
|
|
|
typedef unsigned long nsrefcnt ;
|
1999-05-12 02:19:18 +00:00
|
|
|
typedef unsigned long nsresult ;
|
1999-04-24 02:38:54 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
// XXX need this built into xpidl compiler so that it's really size_t or size_t
|
2000-06-03 07:12:22 +00:00
|
|
|
// and it's scriptable:
|
|
|
|
typedef unsigned long size_t;
|
|
|
|
|
|
|
|
[ptr] native voidPtr(void);
|
|
|
|
[ptr] native charPtr(char);
|
2014-01-04 15:02:17 +00:00
|
|
|
[ptr] native unicharPtr(char16_t);
|
1999-04-24 02:38:54 +00:00
|
|
|
|
|
|
|
[ref, nsid] native nsIDRef(nsID);
|
|
|
|
[ref, nsid] native nsIIDRef(nsIID);
|
|
|
|
[ref, nsid] native nsCIDRef(nsCID);
|
|
|
|
|
|
|
|
[ptr, nsid] native nsIDPtr(nsID);
|
|
|
|
[ptr, nsid] native nsIIDPtr(nsIID);
|
|
|
|
[ptr, nsid] native nsCIDPtr(nsCID);
|
|
|
|
|
2001-10-31 23:35:07 +00:00
|
|
|
// NOTE: Be careful in using the following 3 types. The *Ref and *Ptr variants
|
|
|
|
// are more commonly used (and better supported). Those variants require
|
|
|
|
// nsMemory alloc'd copies when used as 'out' params while these types do not.
|
|
|
|
// However, currently these types can not be used for 'in' params. And, methods
|
|
|
|
// that use them as 'out' params *must* be declared [notxpcom] (with an explicit
|
|
|
|
// return type of nsresult). This makes such methods implicitly not scriptable.
|
|
|
|
// Use of these types in methods without a [notxpcom] declaration will cause
|
|
|
|
// the xpidl compiler to raise an error.
|
|
|
|
// See: http://bugzilla.mozilla.org/show_bug.cgi?id=93792
|
|
|
|
|
|
|
|
[nsid] native nsIID(nsIID);
|
|
|
|
[nsid] native nsID(nsID);
|
|
|
|
[nsid] native nsCID(nsCID);
|
|
|
|
|
1999-04-24 02:38:54 +00:00
|
|
|
[ptr] native nsQIResult(void);
|
|
|
|
|
2001-01-26 02:32:18 +00:00
|
|
|
[ref, domstring] native DOMString(ignored);
|
|
|
|
[ref, domstring] native DOMStringRef(ignored);
|
|
|
|
[ptr, domstring] native DOMStringPtr(ignored);
|
|
|
|
|
2002-02-26 01:41:42 +00:00
|
|
|
[ref, utf8string] native AUTF8String(ignored);
|
|
|
|
[ref, utf8string] native AUTF8StringRef(ignored);
|
|
|
|
[ptr, utf8string] native AUTF8StringPtr(ignored);
|
|
|
|
|
|
|
|
[ref, cstring] native ACString(ignored);
|
|
|
|
[ref, cstring] native ACStringRef(ignored);
|
|
|
|
[ptr, cstring] native ACStringPtr(ignored);
|
|
|
|
|
|
|
|
[ref, astring] native AString(ignored);
|
|
|
|
[ref, astring] native AStringRef(ignored);
|
|
|
|
[ptr, astring] native AStringPtr(ignored);
|
2001-04-05 12:25:09 +00:00
|
|
|
|
2010-07-15 06:19:36 +00:00
|
|
|
[ref, jsval] native jsval(jsval);
|
|
|
|
native jsid(jsid);
|
2010-05-12 13:19:22 +00:00
|
|
|
|
1999-04-24 02:38:54 +00:00
|
|
|
%{C++
|
|
|
|
/*
|
|
|
|
* End commenting out the C++ versions of the above in the output header
|
|
|
|
*/
|
|
|
|
#endif
|
|
|
|
%}
|