/* Copyright 2013 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From ppb_var_dictionary.idl modified Sat Jun 8 23:03:54 2013. */ #ifndef PPAPI_C_PPB_VAR_DICTIONARY_H_ #define PPAPI_C_PPB_VAR_DICTIONARY_H_ #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_macros.h" #include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_var.h" #define PPB_VAR_DICTIONARY_INTERFACE_1_0 … #define PPB_VAR_DICTIONARY_INTERFACE … /** * @file * This file defines the <code>PPB_VarDictionary</code> struct providing * a way to interact with dictionary vars. */ /** * @addtogroup Interfaces * @{ */ /** * A dictionary var contains key-value pairs with unique keys. The keys are * strings while the values can be arbitrary vars. Key comparison is always * done by value instead of by reference. */ struct PPB_VarDictionary_1_0 { … }; PPB_VarDictionary; /** * @} */ #endif /* PPAPI_C_PPB_VAR_DICTIONARY_H_ */