gecko-dev/xpcom/remote/tests/nsIRPCTest.idl

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);
};