ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-7.2/tools/win32/kill.c
Revision: 34
Committed: Sun Oct 2 21:05:51 2005 UTC (18 years, 5 months ago) by lusky
Content type: text/x-csrc
File size: 376 byte(s)
Log Message:
create 7.2 branch, we can move/rename it as needed.


File Contents

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

Properties

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