ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-7.2/tools/win32/rehash.c
Revision: 33
Committed: Sun Oct 2 20:50:00 2005 UTC (18 years, 6 months ago) by knight
Content type: text/x-csrc
Original Path: ircd-hybrid/tools/win32/rehash.c
File size: 452 byte(s)
Log Message:
- svn:keywords

File Contents

# Content
1 /* $Id$ */
2
3 #include <windows.h>
4 #include "setup.h"
5
6 #define WM_REHASH (WM_USER + 0x100)
7 #define WM_REMOTD (WM_USER + 0x101)
8
9 int WINAPI
10 WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
11 LPSTR lpCmdLine, int nCmdShow)
12 {
13 HWND wndhandle = FindWindow(PACKAGE_NAME, NULL);
14
15 if (!wndhandle)
16 {
17 MessageBox(NULL, "ircd-hybrid is not running", NULL, MB_OK | MB_ICONERROR);
18 return 1;
19 }
20
21 PostMessage(wndhandle, WM_REHASH, 0, 0);
22 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision