mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
22 lines
389 B
Plaintext
22 lines
389 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
prio(normal upto urgent) sync protocol PTestDemon
|
|
{
|
|
child:
|
|
async Start();
|
|
|
|
both:
|
|
async AsyncMessage(int n);
|
|
prio(high) sync HiPrioSyncMessage();
|
|
|
|
parent:
|
|
sync SyncMessage(int n);
|
|
|
|
prio(urgent) async UrgentAsyncMessage(int n);
|
|
prio(urgent) sync UrgentSyncMessage(int n);
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|