Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
PP_VarValue Union Reference

#include <pp_var.h>

Public Attributes

PP_Bool as_bool
 
int32_t as_int
 
double as_double
 
int64_t as_id
 

Detailed Description

The PP_VarValue union stores the data for any one of the types listed in the PP_VarType enum.

Member Data Documentation

PP_Bool PP_VarValue::as_bool

If type is PP_VARTYPE_BOOL, as_bool represents the value of this PP_Var as PP_Bool.

double PP_VarValue::as_double

If type is PP_VARTYPE_DOUBLE, as_double represents the value of this PP_Var as double.

int64_t PP_VarValue::as_id

If type is PP_VARTYPE_STRING, PP_VARTYPE_OBJECT, PP_VARTYPE_ARRAY, PP_VARTYPE_DICTIONARY, PP_VARTYPE_ARRAY_BUFFER, or PP_VARTYPE_RESOURCE, as_id represents the value of this PP_Var as an opaque handle assigned by the browser. This handle is guaranteed never to be 0, so a module can initialize this ID to 0 to indicate a "NULL handle."

int32_t PP_VarValue::as_int

If type is PP_VARTYPE_INT32, as_int represents the value of this PP_Var as int32_t.


The documentation for this union was generated from the following file: