mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
374 B
Plaintext
29 lines
374 B
Plaintext
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
protocol PTestSanity {
|
|
|
|
child:
|
|
Ping(int zero, float zeroPtFive, PRInt8 dummy);
|
|
__delete__();
|
|
|
|
parent:
|
|
Pong(int one, float zeroPtTwoFive, PRUint8 dummy);
|
|
|
|
|
|
state PING:
|
|
send Ping goto PONG;
|
|
|
|
state PONG:
|
|
recv Pong goto DEAD;
|
|
|
|
state DEAD:
|
|
send __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|