Chromium Code Reviews| Index: ppapi/generators/pnacl_shim.h |
| diff --git a/ppapi/generators/pnacl_shim.h b/ppapi/generators/pnacl_shim.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..690823894d58d691cc3b286e7a3dbda825622c69 |
| --- /dev/null |
| +++ b/ppapi/generators/pnacl_shim.h |
| @@ -0,0 +1,29 @@ |
| +/* Copyright (c) 2011 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. |
| + */ |
| + |
| +#ifndef PPAPI_GENERATORS_PNACL_SHIM_H_ |
| +#define PPAPI_GENERATORS_PNACL_SHIM_H_ |
| + |
| +#include "ppapi/c/ppb.h" |
| + |
| +/** Defines the interface exposed by the generated wrapper code. */ |
| + |
| +/* There is not a typedef for PPP_GetInterface_type, but it is currently |
|
dmichael (off chromium)
2011/11/30 04:53:15
type->Type?
jvoung - send to chromium...
2011/11/30 17:48:03
Done.
|
| + * the same as PPB_GetInterface. */ |
| +typedef PPB_GetInterface PPP_GetInterface_type; |
| + |
| +void __set_real_Pnacl_PPBGetInterface(PPB_GetInterface real); |
| +void __set_real_Pnacl_PPPGetInterface(PPP_GetInterface_type real); |
| + |
| +const void *__Pnacl_PPBGetInterface(const char *name); |
| +const void *__Pnacl_PPPGetInterface(const char *name); |
| + |
| +struct __PnaclWrapperInfo { |
| + const char* iface_macro; |
| + const void* wrapped_iface; /* If NULL then it was not wrapped! */ |
| + const void* real_iface; |
| +}; |
| + |
| +#endif /* PPAPI_GENERATORS_PNACL_SHIM_H_ */ |