diff options
Diffstat (limited to 'rfb/rfbproto.h')
-rw-r--r-- | rfb/rfbproto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rfb/rfbproto.h b/rfb/rfbproto.h index 4e80fb3..c20f95c 100644 --- a/rfb/rfbproto.h +++ b/rfb/rfbproto.h @@ -74,6 +74,11 @@ #define LIBVNCSERVER_WORDS_BIGENDIAN #endif +/* MS compilers don't have strncasecmp */ +#ifdef _MSC_VER +#define strncasecmp _strnicmp +#endif + #if !defined(WIN32) || defined(__MINGW32__) #define max(a,b) (((a)>(b))?(a):(b)) #ifdef LIBVNCSERVER_HAVE_SYS_TIME_H |