mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
21 lines
649 B
Text
21 lines
649 B
Text
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
nested(upto inside_sync) sync protocol PTestRPC
|
|
{
|
|
parent:
|
|
nested(inside_sync) sync Test1_Start() returns (uint32_t result);
|
|
nested(inside_sync) sync Test1_InnerEvent() returns (uint32_t result);
|
|
async Test2_Start();
|
|
nested(inside_sync) sync Test2_OutOfOrder();
|
|
|
|
child:
|
|
async Start();
|
|
nested(inside_sync) sync Test1_InnerQuery() returns (uint32_t result);
|
|
nested(inside_sync) sync Test1_NoReenter() returns (uint32_t result);
|
|
nested(inside_sync) sync Test2_FirstUrgent();
|
|
nested(inside_sync) sync Test2_SecondUrgent();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|