wrowe 01/09/24 15:50:50
Modified: support/win32 ApacheMonitor.c
Log:
Another recent Win32 PSDK addition that we can cover for VC5 users.
Revision Changes Path
1.13 +2 -1 httpd-2.0/support/win32/ApacheMonitor.c
Index: ApacheMonitor.c
===================================================================
RCS file: /home/cvs/httpd-2.0/support/win32/ApacheMonitor.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ApacheMonitor.c 2001/08/16 22:14:00 1.12
+++ ApacheMonitor.c 2001/09/24 22:50:50 1.13
@@ -940,7 +940,8 @@
hListBox = GetDlgItem(hDlg, IDL_SERVICES);
g_hwndStdoutList = GetDlgItem(hDlg, IDL_STDOUT);
- hStatusBar = CreateStatusWindow(SBT_TOOLTIPS | WS_CHILD | WS_VISIBLE,
+ hStatusBar = CreateStatusWindow(0x0800 /* SBT_TOOLTIPS */
+ | WS_CHILD | WS_VISIBLE,
"", hDlg, IDC_STATBAR);
if (GetApacheServicesStatus())
{
|