mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
21 lines
412 B
Text
21 lines
412 B
Text
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
nested(upto inside_cpow) sync protocol PTestDemon
|
|
{
|
|
child:
|
|
async Start();
|
|
|
|
both:
|
|
async AsyncMessage(int n);
|
|
nested(inside_sync) sync HiPrioSyncMessage();
|
|
|
|
parent:
|
|
sync SyncMessage(int n);
|
|
|
|
nested(inside_cpow) async UrgentAsyncMessage(int n);
|
|
nested(inside_cpow) sync UrgentSyncMessage(int n);
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|