mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
303 B
Plaintext
19 lines
303 B
Plaintext
include protocol PTestFailedCtor;
|
|
include protocol PTestFailedCtorSubsub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
rpc protocol PTestFailedCtorSub {
|
|
manager PTestFailedCtor;
|
|
manages PTestFailedCtorSubsub;
|
|
|
|
parent:
|
|
async PTestFailedCtorSubsub();
|
|
sync Sync();
|
|
__delete__();
|
|
};
|
|
|
|
}
|
|
}
|