source: trunk/sysinfo.c@ 1176

Last change on this file since 1176 was 1176, checked in by John Small, 17 years ago

Ticket 187: Draft 2: Move remaining function declarations

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 857 bytes
Line 
1
2/***********************************************************************
3
4 $Id: sysinfo.c 1176 2008-09-10 21:52:46Z jbs $
5
6 System information applet
7
8 Copyright (c) 1993-98 M. Kimes
9 Copyright (c) 2008 Steven H.Levine
10
11 05 Jan 08 SHL Sync
12
13***********************************************************************/
14
15#define INCL_DOS
16#define INCL_WIN
17
18#include "dll\fm3dll.h"
19#include "dll\fm3dlg.h"
20#include "dll\init.h" // InitFM3DLL
21#include "dll\sysinfo.h" // SysInfoDlgProc
22
23int main(int argc, char *argv[])
24{
25 HAB hab;
26 HMQ hmq;
27
28 hab = WinInitialize(0);
29 if (hab) {
30 hmq = WinCreateMsgQueue(hab, 256);
31 if (hmq) {
32 if (InitFM3DLL(hab, argc, argv)) {
33 WinDlgBox(HWND_DESKTOP, HWND_DESKTOP,
34 SysInfoDlgProc, FM3ModHandle, SYS_FRAME, NULL);
35 }
36 WinDestroyMsgQueue(hmq);
37 }
38 WinTerminate(hab);
39 }
40 return 0;
41}
Note: See TracBrowser for help on using the repository browser.