| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #ifndef NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_ | 7 #ifndef NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_ |
| 8 #define NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_ 1 | 8 #define NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_PPAPI_H_ 1 |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 int (*thread_create)(uintptr_t *tid, | 30 int (*thread_create)(uintptr_t *tid, |
| 31 void (*func)(void *thread_argument), | 31 void (*func)(void *thread_argument), |
| 32 void *thread_argument); | 32 void *thread_argument); |
| 33 int (*thread_join)(uintptr_t tid); | 33 int (*thread_join)(uintptr_t tid); |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 typedef void (*PP_StartFunc)(const struct PP_StartFunctions *funcs); | 36 typedef void (*PP_StartFunc)(const struct PP_StartFunctions *funcs); |
| 37 typedef void (*PP_RegisterThreadFuncs)(const struct PP_ThreadFunctions *funcs); | 37 typedef void (*PP_RegisterThreadFuncs)(const struct PP_ThreadFunctions *funcs); |
| 38 | 38 |
| 39 extern int ppapi_pre_initialized; |
| 39 #endif | 40 #endif |
| OLD | NEW |