From: José Fonseca Date: Sun, 23 Mar 2008 18:30:53 +0000 (+0000) Subject: gallium: wrap decls in extern "C" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=312cbc5a5c7416745976c2281a9bbce6e3332965;p=mesa.git gallium: wrap decls in extern "C" --- diff --git a/src/gallium/drivers/softpipe/sp_winsys.h b/src/gallium/drivers/softpipe/sp_winsys.h index fc372dba27b..291825dfe22 100644 --- a/src/gallium/drivers/softpipe/sp_winsys.h +++ b/src/gallium/drivers/softpipe/sp_winsys.h @@ -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 */