gallium: wrap decls in extern "C"

This commit is contained in:
José Fonseca 2008-03-23 18:30:53 +00:00
parent 301b187ca9
commit 312cbc5a5c
1 changed files with 10 additions and 0 deletions

View File

@ -37,6 +37,12 @@
#include "pipe/p_compiler.h" /* for boolean */
#ifdef __cplusplus
extern "C" {
#endif
enum pipe_format;
struct softpipe_winsys {
@ -60,4 +66,8 @@ struct pipe_screen *
softpipe_create_screen(struct pipe_winsys *);
#ifdef __cplusplus
}
#endif
#endif /* SP_WINSYS_H */