[Gcblue-commits] gcb_wx/include/common tcSound.h,1.11,1.12 tcSoundConsole.h,1.6,1.7
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-03-28 11:41:31
|
Update of /cvsroot/gcblue/gcb_wx/include/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17858 Modified Files: tcSound.h tcSoundConsole.h Log Message: added ifdef MSV for #pragma once instruction Index: tcSoundConsole.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcSoundConsole.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** tcSoundConsole.h 29 Feb 2004 22:51:35 -0000 1.6 --- tcSoundConsole.h 28 Mar 2004 11:30:14 -0000 1.7 *************** *** 28,33 **** #endif // _MSC_VER > 1000 ! #include "wx/wx.h" #include "wx/msw/private.h" // for MS Windows specific definitions #include "tcConsole.h" --- 28,35 ---- #endif // _MSC_VER > 1000 ! #include "wx/wx.h" ! #ifdef WIN32 #include "wx/msw/private.h" // for MS Windows specific definitions + #endif // WIN32 #include "tcConsole.h" Index: tcSound.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcSound.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** tcSound.h 6 Mar 2004 20:52:28 -0000 1.11 --- tcSound.h 28 Mar 2004 11:30:14 -0000 1.12 *************** *** 20,30 **** */ - #if _MSC_VER > 1000 - #pragma once - #endif #ifndef _SOUND_H_ #define _SOUND_H_ #include <AL/al.h> #include <AL/alut.h> --- 20,31 ---- */ #ifndef _SOUND_H_ #define _SOUND_H_ + #if _MSC_VER > 1000 + #pragma once + #endif + #include <AL/al.h> #include <AL/alut.h> |