Added NT-specific definitions to acconfig.h preamble

This commit is contained in:
Howard Chu 1999-10-28 11:17:58 +00:00
parent 1a1248ef45
commit 8da24171e3
2 changed files with 56 additions and 0 deletions

View File

@ -11,6 +11,34 @@
#ifndef _LDAP_PORTABLE_H #ifndef _LDAP_PORTABLE_H
#define _LDAP_PORTABLE_H #define _LDAP_PORTABLE_H
/* --------------------------------------------------- */
/* begin of WINNT specific entries */
#ifdef WINNT
/* don't suck in all of the win32 api */
#define WIN32_LEAN_AND_MEAN
/* WindowsNT specific features */
#define HAVE_NT_SERVICE_MANAGER 1
#define HAVE_NT_EVENT_LOG 1
#define MAXPATHLEN _MAX_PATH
/* preprocess out undefined functions */
#define LOG_DEBUG 0
#define openlog(a, b)
#define closelog()
/* define undefined types */
#define ssize_t signed int
typedef char * caddr_t;
#endif
/* end of WINNT specific entries */
/* --------------------------------------------------- */
/* end of preamble */ /* end of preamble */
@TOP@ @TOP@

View File

@ -12,6 +12,34 @@
#ifndef _LDAP_PORTABLE_H #ifndef _LDAP_PORTABLE_H
#define _LDAP_PORTABLE_H #define _LDAP_PORTABLE_H
/* --------------------------------------------------- */
/* begin of WINNT specific entries */
#ifdef WINNT
/* don't suck in all of the win32 api */
#define WIN32_LEAN_AND_MEAN
/* WindowsNT specific features */
#define HAVE_NT_SERVICE_MANAGER 1
#define HAVE_NT_EVENT_LOG 1
#define MAXPATHLEN _MAX_PATH
/* preprocess out undefined functions */
#define LOG_DEBUG 0
#define openlog(a, b)
#define closelog()
/* define undefined types */
#define ssize_t signed int
typedef char * caddr_t;
#endif
/* end of WINNT specific entries */
/* --------------------------------------------------- */
/* end of preamble */ /* end of preamble */
/* Define if on AIX 3. /* Define if on AIX 3.