mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
Added NT-specific definitions to acconfig.h preamble
This commit is contained in:
parent
1a1248ef45
commit
8da24171e3
28
acconfig.h
28
acconfig.h
@ -11,6 +11,34 @@
|
||||
#ifndef _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 */
|
||||
@TOP@
|
||||
|
||||
|
@ -12,6 +12,34 @@
|
||||
#ifndef _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 */
|
||||
|
||||
/* Define if on AIX 3.
|
||||
|
Loading…
Reference in New Issue
Block a user