summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2011-02-26 09:34:47 +0000
committerGuenter Knauf <fuankg@apache.org>2011-02-26 09:34:47 +0000
commitabcb9e30113207f5cff62427a8f3b872eb655a08 (patch)
tree8df7f10f6e91be7ad7bc39fbaacc12da22bbf9aa /os
parent1789c233470448678efbe378c002bc5463fbfc4f (diff)
downloadhttpd-abcb9e30113207f5cff62427a8f3b872eb655a08.tar.gz
Axed C++ comments and tabs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1074809 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/win32/os.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/os/win32/os.h b/os/win32/os.h
index 2a70bf84d9..cd1d28c54f 100644
--- a/os/win32/os.h
+++ b/os/win32/os.h
@@ -80,11 +80,11 @@ AP_DECLARE_DATA extern int ap_real_exit_code;
AP_DECLARE(apr_status_t) ap_os_proc_filepath(char **binpath, apr_pool_t *p);
typedef enum {
- AP_DLL_WINBASEAPI = 0, // kernel32 From WinBase.h
- AP_DLL_WINADVAPI = 1, // advapi32 From WinBase.h
- AP_DLL_WINSOCKAPI = 2, // mswsock From WinSock.h
- AP_DLL_WINSOCK2API = 3, // ws2_32 From WinSock2.h
- AP_DLL_defined = 4 // must define as last idx_ + 1
+ AP_DLL_WINBASEAPI = 0, /* kernel32 From WinBase.h */
+ AP_DLL_WINADVAPI = 1, /* advapi32 From WinBase.h */
+ AP_DLL_WINSOCKAPI = 2, /* mswsock From WinSock.h */
+ AP_DLL_WINSOCK2API = 3, /* ws2_32 From WinSock2.h */
+ AP_DLL_defined = 4 /* must define as last idx_ + 1 */
} ap_dlltoken_e;
FARPROC ap_load_dll_func(ap_dlltoken_e fnLib, char* fnName, int ordinal);