mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
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);
|
|
};
|