mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-25 12:23:59 +00:00
7 lines
217 B
C
7 lines
217 B
C
#ifdef _MSC_VER
|
|
#include "stdintmsc.h"
|
|
// Don't bug me with strcpy() deprecation warnings
|
|
#pragma warning(disable : 4996)
|
|
// Or incompatible types from char[] to const char * etc
|
|
#pragma warning(disable : 4133)
|
|
#endif |