mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 19:20:38 +00:00
Use _strlwr and _strupr with MSVC
git-svn-id: https://svn.eduke32.com/eduke32@7105 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
385562d143
commit
8461fb0cb9
1 changed files with 7 additions and 2 deletions
|
@ -1153,8 +1153,13 @@ char *Bstrtolower(char *str);
|
||||||
#define Bwildmatch wildmatch
|
#define Bwildmatch wildmatch
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
# define Bstrlwr strlwr
|
# ifdef _MSC_VER
|
||||||
# define Bstrupr strupr
|
# define Bstrlwr _strlwr
|
||||||
|
# define Bstrupr _strupr
|
||||||
|
# else
|
||||||
|
# define Bstrlwr strlwr
|
||||||
|
# define Bstrupr strupr
|
||||||
|
# endif
|
||||||
#else
|
#else
|
||||||
char *Bstrlwr(char *);
|
char *Bstrlwr(char *);
|
||||||
char *Bstrupr(char *);
|
char *Bstrupr(char *);
|
||||||
|
|
Loading…
Reference in a new issue