mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +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
|
||||
|
||||
#ifdef _WIN32
|
||||
# define Bstrlwr strlwr
|
||||
# define Bstrupr strupr
|
||||
# ifdef _MSC_VER
|
||||
# define Bstrlwr _strlwr
|
||||
# define Bstrupr _strupr
|
||||
# else
|
||||
# define Bstrlwr strlwr
|
||||
# define Bstrupr strupr
|
||||
# endif
|
||||
#else
|
||||
char *Bstrlwr(char *);
|
||||
char *Bstrupr(char *);
|
||||
|
|
Loading…
Reference in a new issue