diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2009-01-05 21:41:10 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2009-01-05 21:41:10 +0100 |
commit | 9b609e2b866c2c7f3efb22cf31c1ec8bee336c9a (patch) | |
tree | d7c75d3b9080514d292895701b0b295a8cb8560d | |
parent | mod_ext_filter: fix test for onfail behaviour (diff) | |
download | apache2-9b609e2b866c2c7f3efb22cf31c1ec8bee336c9a.tar.xz apache2-9b609e2b866c2c7f3efb22cf31c1ec8bee336c9a.zip |
more fallout from removing win9x-model services, this is no longer used
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@731697 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | support/win32/ApacheMonitor.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/support/win32/ApacheMonitor.c b/support/win32/ApacheMonitor.c index 57729b78b2..1cdb17971d 100644 --- a/support/win32/ApacheMonitor.c +++ b/support/win32/ApacheMonitor.c @@ -537,32 +537,6 @@ static void addListBoxString(HWND hListBox, LPTSTR lpStr) } -#ifndef UNICODE -#define addListBoxStringA addListBoxString -#else -static void addListBoxStringA(HWND hListBox, LPSTR lpStr) -{ - static int nItems = 0; - TCHAR WStr[16384]; - - if (!g_bDlgServiceOn) { - return; - } - if (!MultiByteToWideChar(CP_ACP, 0, lpStr, (int)strlen(lpStr) + 1, - WStr, (int) (sizeof(WStr) / sizeof(TCHAR)))) - return; - ++nItems; - if (nItems > MAX_LOADSTRING) - { - SendMessage(hListBox, LB_RESETCONTENT, 0, 0); - nItems = 1; - } - ListBox_SetCurSel(hListBox, - ListBox_AddString(hListBox, WStr)); -} -#endif - - BOOL ApacheManageService(LPCTSTR szServiceName, LPCTSTR szImagePath, LPTSTR szComputerName, DWORD dwCommand) { |