diff options
Diffstat (limited to 'ppapi/c/private/ppb_instance_private.h')
-rw-r--r-- | ppapi/c/private/ppb_instance_private.h | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/ppapi/c/private/ppb_instance_private.h b/ppapi/c/private/ppb_instance_private.h index 561374d..886613e 100644 --- a/ppapi/c/private/ppb_instance_private.h +++ b/ppapi/c/private/ppb_instance_private.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From private/ppb_instance_private.idl modified Mon Oct 8 10:50:04 2012. */ +/* From private/ppb_instance_private.idl modified Tue Jul 23 13:19:04 2013. */ #ifndef PPAPI_C_PRIVATE_PPB_INSTANCE_PRIVATE_H_ #define PPAPI_C_PRIVATE_PPB_INSTANCE_PRIVATE_H_ @@ -26,6 +26,29 @@ /** + * @addtogroup Enums + * @{ + */ +/** + * The <code>PP_ExternalPluginResult </code> enum contains result codes from + * launching an external plugin. + */ +typedef enum { + /** Successful external plugin call */ + PP_EXTERNAL_PLUGIN_OK = 0, + /** Unspecified external plugin error */ + PP_EXTERNAL_PLUGIN_FAILED = 1, + /** Error creating the module */ + PP_EXTERNAL_PLUGIN_ERROR_MODULE = 2, + /** Error creating and initializing the instance */ + PP_EXTERNAL_PLUGIN_ERROR_INSTANCE = 3 +} PP_ExternalPluginResult; +PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_ExternalPluginResult, 4); +/** + * @} + */ + +/** * @addtogroup Interfaces * @{ */ |