Last change
on this file since 1199 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
|
Rev | Line | |
---|
[907] | 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 |
|
---|
[2] | 15 | #define INCL_DOS
|
---|
| 16 | #define INCL_WIN
|
---|
| 17 |
|
---|
[1176] | 18 | #include "dll\fm3dll.h"
|
---|
[907] | 19 | #include "dll\fm3dlg.h"
|
---|
[1176] | 20 | #include "dll\init.h" // InitFM3DLL
|
---|
[1155] | 21 | #include "dll\sysinfo.h" // SysInfoDlgProc
|
---|
[2] | 22 |
|
---|
[551] | 23 | int main(int argc, char *argv[])
|
---|
| 24 | {
|
---|
| 25 | HAB hab;
|
---|
| 26 | HMQ hmq;
|
---|
[2] | 27 |
|
---|
| 28 | hab = WinInitialize(0);
|
---|
[551] | 29 | if (hab) {
|
---|
| 30 | hmq = WinCreateMsgQueue(hab, 256);
|
---|
| 31 | if (hmq) {
|
---|
| 32 | if (InitFM3DLL(hab, argc, argv)) {
|
---|
[1155] | 33 | WinDlgBox(HWND_DESKTOP, HWND_DESKTOP,
|
---|
| 34 | SysInfoDlgProc, FM3ModHandle, SYS_FRAME, NULL);
|
---|
[2] | 35 | }
|
---|
| 36 | WinDestroyMsgQueue(hmq);
|
---|
| 37 | }
|
---|
| 38 | WinTerminate(hab);
|
---|
| 39 | }
|
---|
| 40 | return 0;
|
---|
| 41 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.