OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 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 dev/pp_array_structs_dev.idl modified Mon Dec 09 11:49:55 2013. */ |
| 7 |
| 8 #ifndef PPAPI_C_DEV_PP_ARRAY_STRUCTS_DEV_H_ |
| 9 #define PPAPI_C_DEV_PP_ARRAY_STRUCTS_DEV_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 /** |
| 17 * @file |
| 18 * This file defines array structs for primitive types. |
| 19 */ |
| 20 |
| 21 |
| 22 /** |
| 23 * @addtogroup Structs |
| 24 * @{ |
| 25 */ |
| 26 struct PP_Double_Array { |
| 27 uint32_t size; |
| 28 double *elements; |
| 29 }; |
| 30 |
| 31 struct PP_String_Array { |
| 32 uint32_t size; |
| 33 struct PP_Var *elements; |
| 34 }; |
| 35 /** |
| 36 * @} |
| 37 */ |
| 38 |
| 39 #endif /* PPAPI_C_DEV_PP_ARRAY_STRUCTS_DEV_H_ */ |
| 40 |
OLD | NEW |