mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
584 B
Plaintext
22 lines
584 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
prio(normal upto high) sync protocol PTestRPC
|
|
{
|
|
parent:
|
|
prio(high) sync Test1_Start() returns (uint32_t result);
|
|
prio(high) sync Test1_InnerEvent() returns (uint32_t result);
|
|
async Test2_Start();
|
|
prio(high) sync Test2_OutOfOrder();
|
|
|
|
child:
|
|
async Start();
|
|
prio(high) sync Test1_InnerQuery() returns (uint32_t result);
|
|
prio(high) sync Test1_NoReenter() returns (uint32_t result);
|
|
prio(high) sync Test2_FirstUrgent();
|
|
prio(high) sync Test2_SecondUrgent();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|