fix for 80867 git-svn-id: svn://10.0.0.236/trunk@94945 18797224-902f-48f8-a5cc-f745e15eee43
19 lines
660 B
Plaintext
19 lines
660 B
Plaintext
#include "nsISupports.idl"
|
|
#include "nsIComponentManager.idl"
|
|
|
|
#pragma prefix
|
|
[scriptable, uuid(ca1e2656-1dd1-11b2-9c4e-f49ea557abde)]
|
|
interface bcIJavaSample : nsISupports
|
|
{
|
|
void test0();
|
|
void test1(in long l);
|
|
void test2(in bcIJavaSample o);
|
|
void test3(in PRUint32 count,[array, size_is(count)] in long valueArray);
|
|
void test4(in PRUint32 count,[array, size_is(count)] inout string valueArray);
|
|
void test5(in nsIComponentManager cm);
|
|
void test6(in PRUint32 count,[array, size_is(count)] in string valueArray);
|
|
void test7(out PRUint32 count,[array, size_is(count)] out char valueArray);
|
|
void test8(in nsCIDRef cid);
|
|
void test9(out nsIIDPtr po);
|
|
};
|