mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
14 lines
227 B
Text
14 lines
227 B
Text
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
sync protocol PTestPriority {
|
|
parent:
|
|
prio(high) async Msg1();
|
|
prio(high) sync Msg2();
|
|
|
|
child:
|
|
prio(high) async Msg3();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|