mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
307 B
Plaintext
25 lines
307 B
Plaintext
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
protocol PTestBridgeSub {
|
|
child:
|
|
Ping();
|
|
|
|
parent:
|
|
BridgeEm();
|
|
__delete__();
|
|
|
|
state START:
|
|
send Ping goto BRIDGEEM;
|
|
state BRIDGEEM:
|
|
recv BridgeEm goto DEAD;
|
|
state DEAD:
|
|
recv __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|