home *** CD-ROM | disk | FTP | other *** search
- #include "jam.h"
-
- int PASCAL WinMain(hInstance, hPrevInstance, lpCmdLine, nCmdShow)
- HANDLE hInstance; /* current instance */
- HANDLE hPrevInstance; /* previous instance */
- LPSTR lpCmdLine;
- int nCmdShow;
- {
- char name[256];
-
- if (*lpCmdLine)
- {
- MessageBeep((UINT)-1);
- strcpy(name, AppName);
- strcat(name, " Alarm");
- MessageBox(0, lpCmdLine, name, MB_OK | MB_ICONSTOP);
- }
- return(1);
- }