Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
ppb_var_dictionary.h
Go to the documentation of this file.
1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 
6 /* From ppb_var_dictionary.idl modified Thu Oct 20 13:57:04 2016. */
7 
8 #ifndef PPAPI_C_PPB_VAR_DICTIONARY_H_
9 #define PPAPI_C_PPB_VAR_DICTIONARY_H_
10 
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_macros.h"
13 #include "ppapi/c/pp_stdint.h"
14 #include "ppapi/c/pp_var.h"
15 
16 #define PPB_VAR_DICTIONARY_INTERFACE_1_0 "PPB_VarDictionary;1.0"
17 #define PPB_VAR_DICTIONARY_INTERFACE PPB_VAR_DICTIONARY_INTERFACE_1_0
18 
43  struct PP_Var (*Create)(void);
55  struct PP_Var (*Get)(struct PP_Var dict, struct PP_Var key);
68  PP_Bool (*Set)(struct PP_Var dict, struct PP_Var key, struct PP_Var value);
76  void (*Delete)(struct PP_Var dict, struct PP_Var key);
85  PP_Bool (*HasKey)(struct PP_Var dict, struct PP_Var key);
98  struct PP_Var (*GetKeys)(struct PP_Var dict);
99 };
100 
106 #endif /* PPAPI_C_PPB_VAR_DICTIONARY_H_ */
107 
struct PP_Var(* GetKeys)(struct PP_Var dict)
Definition: ppb_var_dictionary.h:98
struct PP_Var(* Get)(struct PP_Var dict, struct PP_Var key)
Definition: ppb_var_dictionary.h:55
struct PP_Var(* Create)(void)
Definition: ppb_var_dictionary.h:43
PP_Bool(* Set)(struct PP_Var dict, struct PP_Var key, struct PP_Var value)
Definition: ppb_var_dictionary.h:68
union PP_VarValue value
Definition: pp_var.h:180
Definition: ppb_var_dictionary.h:35
Definition: pp_var.h:166
void(* Delete)(struct PP_Var dict, struct PP_Var key)
Definition: ppb_var_dictionary.h:76
PP_Bool
Definition: pp_bool.h:30
PP_Bool(* HasKey)(struct PP_Var dict, struct PP_Var key)
Definition: ppb_var_dictionary.h:85