mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
15
Src/Wasabi/bfc/platform/strcmp.h
Normal file
15
Src/Wasabi/bfc/platform/strcmp.h
Normal file
@ -0,0 +1,15 @@
|
||||
#ifndef NULLSOFT_BFC_STRCMP_H
|
||||
#define NULLSOFT_BFC_STRCMP_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <shlwapi.h>
|
||||
#define strcasestr StrStrIA
|
||||
#endif
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <string.h>
|
||||
#define _strnicmp strncasecmp
|
||||
#define _stricmp strcasecmp
|
||||
#endif
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user