File: message.c

package info (click to toggle)
nut 2.8.4%2Breally-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,720 kB
  • sloc: ansic: 132,030; sh: 17,256; cpp: 12,566; makefile: 5,646; python: 1,114; perl: 856; xml: 47
file content (14 lines) | stat: -rw-r--r-- 232 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifdef WIN32
#include <windows.h>

int main(int argc, char ** argv)
{
	if (argc < 2)
		return 1;

	MessageBox(NULL, argv[1], "Network UPS Tools",
		MB_OK|MB_ICONEXCLAMATION|MB_SERVICE_NOTIFICATION);

	return 0;
}
#endif	/* WIN32 */