a=leilag@eng.sun.com r=idk@eng.sun.com git-svn-id: svn://10.0.0.236/trunk@60928 18797224-902f-48f8-a5cc-f745e15eee43
11 lines
323 B
Plaintext
11 lines
323 B
Plaintext
#include "nsISupports.idl"
|
|
|
|
[scriptable, uuid(e7fc2bf4-1dd1-11b2-9253-8efe01a2f0d2)]
|
|
interface nsIRPCTest : nsISupports
|
|
{
|
|
void test1(inout long l);
|
|
void test2(in long l1,inout long l2);
|
|
void test3(in string s1,inout string s2);
|
|
void test4(in PRUint32 count,[array, size_is(count)] in string valueArray);
|
|
};
|