mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
463 B
Plaintext
28 lines
463 B
Plaintext
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
|
|
|
include protocol PPluginInstance;
|
|
|
|
include "npapi.h";
|
|
|
|
using NPReason;
|
|
|
|
namespace mozilla {
|
|
namespace plugins {
|
|
|
|
/**
|
|
* This empty protocol exists only to be constructed and destroyed.
|
|
*/
|
|
rpc protocol PStreamNotify
|
|
{
|
|
manager PPluginInstance;
|
|
|
|
child:
|
|
/**
|
|
* Represents NPP_URLNotify
|
|
*/
|
|
async __delete__(NPReason reason);
|
|
};
|
|
|
|
} // namespace plugins
|
|
} // namespace mozilla
|