| Index: ppapi/c/trusted/ppp_broker.h
|
| ===================================================================
|
| --- ppapi/c/trusted/ppp_broker.h (revision 92804)
|
| +++ ppapi/c/trusted/ppp_broker.h (working copy)
|
| @@ -2,27 +2,36 @@
|
| * Use of this source code is governed by a BSD-style license that can be
|
| * found in the LICENSE file.
|
| */
|
| +
|
| +/* From trusted/ppp_broker.idl modified Sat Jul 16 16:51:03 2011. */
|
| +
|
| #ifndef PPAPI_C_TRUSTED_PPP_BROKER_H_
|
| #define PPAPI_C_TRUSTED_PPP_BROKER_H_
|
|
|
| +#include "ppapi/c/pp_macros.h"
|
| +
|
| +/**
|
| + * @file
|
| + * This file defines functions that your module must implement to support a
|
| + * broker.
|
| + */
|
| +
|
| +
|
| +// {PENDING: undefine PP_EXPORT?}
|
| +
|
| #include "ppapi/c/pp_instance.h"
|
| #include "ppapi/c/pp_stdint.h"
|
|
|
| +
|
| #if __GNUC__ >= 4
|
| +
|
| #define PP_EXPORT __attribute__ ((visibility("default")))
|
| #elif defined(_MSC_VER)
|
| #define PP_EXPORT __declspec(dllexport)
|
| #endif
|
|
|
| -/**
|
| - * @file
|
| - * This file defines functions that your module must implement to support a
|
| - * broker.
|
| - */
|
|
|
| -// {PENDING: undefine PP_EXPORT?}
|
|
|
| -
|
| /* We don't want name mangling for these external functions. We only need
|
| * 'extern "C"' if we're compiling with a C++ compiler.
|
| */
|
| @@ -90,3 +99,4 @@
|
| #endif
|
|
|
| #endif /* PPAPI_C_TRUSTED_PPP_BROKER_H_ */
|
| +
|
|
|