diff options
Diffstat (limited to 'ppapi/api/ppp.idl')
-rw-r--r-- | ppapi/api/ppp.idl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ppapi/api/ppp.idl b/ppapi/api/ppp.idl index b26e63f..8eb978a 100644 --- a/ppapi/api/ppp.idl +++ b/ppapi/api/ppp.idl @@ -121,3 +121,19 @@ PP_EXPORT const void* PPP_GetInterface(const char* interface_name); #endinl +/** + * Defines the type of the <code>PPP_InitializeModule</code> function. + */ +typedef int32_t PP_InitializeModule_Func( + [in] PP_Module module, + [in] PPB_GetInterface get_browser_interface); + +/** + * Defines the type of the <code>PPP_ShutdownModule</code> function. + */ +typedef void PP_ShutdownModule_Func(); + +/** + * Defines the type of the <code>PPP_ShutdownModule</code> function. + */ +typedef interface_t PP_GetInterface_Func([in] str_t interface_name); |