diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-02-26 10:34:47 +0100 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-02-26 10:34:47 +0100 |
commit | abcb9e30113207f5cff62427a8f3b872eb655a08 (patch) | |
tree | 8df7f10f6e91be7ad7bc39fbaacc12da22bbf9aa /os/win32/os.h | |
parent | 'votes' (diff) | |
download | apache2-abcb9e30113207f5cff62427a8f3b872eb655a08.tar.xz apache2-abcb9e30113207f5cff62427a8f3b872eb655a08.zip |
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/win32/os.h')
-rw-r--r-- | os/win32/os.h | 10 |
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); |