diff options
author | José Fonseca <[email protected]> | 2008-02-27 18:39:57 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-27 18:39:57 +0900 |
commit | d6229d7f1fda03d3c73998505b0facf6e3d5b882 (patch) | |
tree | 7d07c2de5df451bf1f12c03abdd894f7507cec88 /src/gallium/auxiliary/pipebuffer/pb_buffer.h | |
parent | 9409043c58bbcac37b439032fc61aff2a0b0d543 (diff) |
gallium: Make headers C++ friendly.
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer/pb_buffer.h')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_buffer.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_buffer.h b/src/gallium/auxiliary/pipebuffer/pb_buffer.h index f5b5f4052f8..4b09c80b2a1 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_buffer.h +++ b/src/gallium/auxiliary/pipebuffer/pb_buffer.h @@ -37,7 +37,7 @@ * There is no obligation of a winsys driver to use this library. And a pipe * driver should be completly agnostic about it. * - * \author Jos� Fonseca <[email protected]> + * \author Jos� Fonseca <[email protected]> */ #ifndef PB_BUFFER_H_ @@ -50,6 +50,11 @@ #include "pipe/p_inlines.h" +#ifdef __cplusplus +extern "C" { +#endif + + struct pb_vtbl; /** @@ -200,4 +205,8 @@ void pb_init_winsys(struct pipe_winsys *winsys); +#ifdef __cplusplus +} +#endif + #endif /*PB_BUFFER_H_*/ |