#define INCL_DOS #define INCL_WIN #include #include #include #include #include #include #include "dll\fm3dll.h" #include "dll\fm3dlg.h" int main (int argc,char *argv[]) { HAB hab; HMQ hmq; FILESTATUS3 fs; static CHAR fullname[CCHMAXPATH]; CHAR *thisarg = NULL; INT x; DosError(FERR_DISABLEHARDERR); for(x = 1;x < argc;x++) { if(!strchr("/;,`\'",*argv[x]) && !thisarg) { thisarg = argv[x]; break; } } if(!thisarg) { thisarg = fullname; save_dir(fullname); } DosError(FERR_DISABLEHARDERR); if(thisarg && !DosQueryPathInfo(thisarg, FIL_STANDARD, &fs, sizeof(fs))) { if(DosQueryPathInfo(thisarg, FIL_QUERYFULLNAME, fullname, sizeof(fullname))) strcpy(fullname,thisarg); hab = WinInitialize(0); if(hab) { hmq = WinCreateMsgQueue(hab,256); if(hmq) { if(InitFM3DLL(hab,argc,argv)) { MakeValidDir(fullname); WinDlgBox(HWND_DESKTOP, HWND_DESKTOP, UndeleteDlgProc, FM3ModHandle, UNDEL_FRAME, (PVOID)fullname); } DosSleep(250L); WinDestroyMsgQueue(hmq); } WinTerminate(hab); } } else DosBeep(250,100); return 0; }