summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2013-02-20 04:03:42 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2013-02-20 04:03:42 +0000
commita7a919ad86537e05471af5d67838994687622afc (patch)
tree2a4b80e7eb20951502ff2454318f78d955ae2bcd /os
parentdd8bdc09d245f70ce022977a0b1e5d93758bc186 (diff)
downloadhttpd-a7a919ad86537e05471af5d67838994687622afc.tar.gz
The days of 9x, Win2K are long gone. No more need of a stub
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1447992 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/win32/os.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/os/win32/os.h b/os/win32/os.h
index 407c144d19..178c05dc06 100644
--- a/os/win32/os.h
+++ b/os/win32/os.h
@@ -105,29 +105,6 @@ void CleanNullACL(void *sa);
ap_winapi_pfn_##fn = (ap_winapi_fpt_##fn) ap_load_dll_func(lib, #fn, ord); \
return (*(ap_winapi_pfn_##fn)) names; }; \
-/* Win2K kernel only */
-AP_DECLARE_LATE_DLL_FUNC(AP_DLL_WINADVAPI, BOOL, WINAPI, ChangeServiceConfig2A, 0, (
- SC_HANDLE hService,
- DWORD dwInfoLevel,
- LPVOID lpInfo),
- (hService, dwInfoLevel, lpInfo));
-#undef ChangeServiceConfig2
-#define ChangeServiceConfig2 ap_winapi_ChangeServiceConfig2A
-
-/* WinNT kernel only */
-AP_DECLARE_LATE_DLL_FUNC(AP_DLL_WINBASEAPI, BOOL, WINAPI, CancelIo, 0, (
- IN HANDLE hFile),
- (hFile));
-#undef CancelIo
-#define CancelIo ap_winapi_CancelIo
-
-/* Win9x kernel only */
-AP_DECLARE_LATE_DLL_FUNC(AP_DLL_WINBASEAPI, DWORD, WINAPI, RegisterServiceProcess, 0, (
- DWORD dwProcessId,
- DWORD dwType),
- (dwProcessId, dwType));
-#define RegisterServiceProcess ap_winapi_RegisterServiceProcess
-
#endif /* def AP_DECLARE_EXPORT */
#ifdef __cplusplus