Change the translation of the "Help" menu item to "?", so that the menu can be displa...
[reactos.git] / rosapps / smartpdf / baseutils / str_strsafe.h
1 /* Written by Krzysztof Kowalczyk (http://blog.kowalczyk.info)
2 The author disclaims copyright to this source code. */
3 #ifndef __STR_STRSAFE_H
4 #define __STR_STRSAFE_H
5
6 /* When using MSVC, use <strsafe.h>, emulate it on other compiler (e.g. mingw) */
7
8 #ifndef __GNUC__
9 #include <strsafe.h>
10 #else
11 #include <stdio.h>
12 #include <string.h>
13 #include <windows.h>
14 #define STRSAFE_E_INSUFFICIENT_BUFFER -1
15 #define _vsnprintf_s(p,s,z,f,a) vsnprintf(p,s,f,a)
16 #define StringCchVPrintfA vsnprintf
17 #define StringCchPrintfA snprintf
18 #define _stricmp strcasecmp
19 #define _strnicmp strncasecmp
20 #endif
21
22 #endif