diff options
author | Yang Tse <yangsita@gmail.com> | 2012-07-05 22:16:15 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-07-05 22:18:11 +0200 |
commit | e77d8670685d38d80c940877a4fdfa3382c4d6cc (patch) | |
tree | 91b785d4fc38e8b741c62f8335b9a1bf5f5e7b1c /lib/config-win32ce.h | |
parent | 1b27bb446fad52d94a44d1d9bb5ee4b9c65d1e24 (diff) | |
download | curl-e77d8670685d38d80c940877a4fdfa3382c4d6cc.tar.gz |
unicode NTLM SSPI: cleanup
Reduce the number of #ifdef UNICODE directives used in source files.
Diffstat (limited to 'lib/config-win32ce.h')
-rw-r--r-- | lib/config-win32ce.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h index 610cbb527..a8ab0d34e 100644 --- a/lib/config-win32ce.h +++ b/lib/config-win32ce.h @@ -1,5 +1,5 @@ -#ifndef __LIB_CONFIG_WIN32CE_H -#define __LIB_CONFIG_WIN32CE_H +#ifndef HEADER_CURL_CONFIG_WIN32CE_H +#define HEADER_CURL_CONFIG_WIN32CE_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -427,6 +427,14 @@ /* WinCE */ /* ---------------------------------------------------------------- */ +#ifndef UNICODE +# define UNICODE +#endif + +#ifndef _UNICODE +# define _UNICODE +#endif + #define CURL_DISABLE_FILE 1 #define CURL_DISABLE_TELNET 1 #define CURL_DISABLE_LDAP 1 @@ -437,4 +445,4 @@ extern int stat(const char *path,struct stat *buffer ); -#endif /* __LIB_CONFIG_WIN32CE_H */ +#endif /* HEADER_CURL_CONFIG_WIN32CE_H */ |