Add rayman2 source files
This commit is contained in:
18
Rayman_X/cpa/public/SND/win95/SND_disable_warning.h
Normal file
18
Rayman_X/cpa/public/SND/win95/SND_disable_warning.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/*disable Level4 warning for Visual*/
|
||||
/*This file should only disable Level4 warning encoutered in windows.H files*/
|
||||
#ifdef VISUAL
|
||||
|
||||
|
||||
//#pragma message("Warning: some Level4 warning messages have been disabled by SND_disable_warning.H(SND.H)")
|
||||
|
||||
/*warning found in Win32 headers (noboby is perfect)*/
|
||||
#pragma warning (disable:4115) /*named type definition in parentheses*/
|
||||
#pragma warning (disable:4201) /*nonstandard extension used : nameless struct/union*/
|
||||
#pragma warning (disable:4214) /*nonstandard extension used : bit field types other than int*/
|
||||
#pragma warning (disable:4514) /*unreferenced inline function has been removed*/
|
||||
|
||||
/*unsignificant warnings found in SND source code*/
|
||||
#pragma warning (disable:4706) /*assignment within conditional expression*/
|
||||
#pragma warning (disable:4100) /*unreferenced formal parameter*/
|
||||
#pragma warning (disable:4127) /*conditional expression is constant*/
|
||||
#endif /*VISUAL*/
|
Reference in New Issue
Block a user