forked from teamnwah/openmw-tes3coop
10 lines
142 B
C
10 lines
142 B
C
|
// Wrapper for MSVC
|
||
|
#ifndef _STRINGS_WRAPPER_H
|
||
|
#define _STRINGS_WRAPPER_H
|
||
|
|
||
|
#pragma warning(disable: 4996)
|
||
|
|
||
|
#define strcasecmp stricmp
|
||
|
|
||
|
#endif
|