Add rayman2 source files

This commit is contained in:
2024-09-18 02:33:44 +08:00
parent bcc093f8ed
commit fb036c54fd
14339 changed files with 2596224 additions and 0 deletions

View 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*/