Index: ppapi/c/dev/pp_array_structs_dev.h |
diff --git a/ppapi/c/dev/pp_array_structs_dev.h b/ppapi/c/dev/pp_array_structs_dev.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..55ef60e066009592cd414d6c2a1dd141c81516ba |
--- /dev/null |
+++ b/ppapi/c/dev/pp_array_structs_dev.h |
@@ -0,0 +1,40 @@ |
+/* Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+/* From dev/pp_array_structs_dev.idl modified Mon Dec 09 11:49:55 2013. */ |
+ |
+#ifndef PPAPI_C_DEV_PP_ARRAY_STRUCTS_DEV_H_ |
+#define PPAPI_C_DEV_PP_ARRAY_STRUCTS_DEV_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" |
+ |
+/** |
+ * @file |
+ * This file defines array structs for primitive types. |
+ */ |
+ |
+ |
+/** |
+ * @addtogroup Structs |
+ * @{ |
+ */ |
+struct PP_Double_Array { |
+ uint32_t size; |
+ double *elements; |
+}; |
+ |
+struct PP_String_Array { |
+ uint32_t size; |
+ struct PP_Var *elements; |
+}; |
+/** |
+ * @} |
+ */ |
+ |
+#endif /* PPAPI_C_DEV_PP_ARRAY_STRUCTS_DEV_H_ */ |
+ |