diff options
author | Richard Basch <probe@mit.edu> | 1997-02-25 23:34:26 +0000 |
---|---|---|
committer | Richard Basch <probe@mit.edu> | 1997-02-25 23:34:26 +0000 |
commit | 01ca74724c7c0946f8fa7907142d43815c949025 (patch) | |
tree | adb281090af4a3a5b9e143c9a9551e4e67eac993 /src/include | |
parent | 288b8b4d38e8e3b509fc3a2a31e5d0f73716b3cf (diff) | |
download | krb5-01ca74724c7c0946f8fa7907142d43815c949025.tar.gz krb5-01ca74724c7c0946f8fa7907142d43815c949025.tar.xz krb5-01ca74724c7c0946f8fa7907142d43815c949025.zip |
Don't do all the setup if RES_ONLY is defined; only get the resource
definitions, since Win16's 'rc' can't handle much more.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9979 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/win-mac.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/win-mac.h b/src/include/win-mac.h index 20fa9652f6..1e58e81af1 100644 --- a/src/include/win-mac.h +++ b/src/include/win-mac.h @@ -17,6 +17,12 @@ #define ID_READ_PWD_PROMPT2 10002 #define ID_READ_PWD_PWD 10003 +#ifdef RES_ONLY + +#define APSTUDIO_HIDDEN_SYMBOLS +#include <windows.h> + +#else #if defined(_MSDOS) /* Windows 16 specific */ @@ -210,6 +216,8 @@ typedef unsigned char u_char; HINSTANCE get_lib_instance(void); +#endif /* !RES_ONLY */ + #endif /* _MSDOS || _WIN32 */ #ifndef KRB5_CALLCONV |