mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
263 B
Plaintext
18 lines
263 B
Plaintext
include protocol PTestShutdownSub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
sync protocol PTestShutdownSubsub {
|
|
manager PTestShutdownSub;
|
|
|
|
parent:
|
|
sync __delete__();
|
|
|
|
state LIVE:
|
|
recv __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|