Changeset 844 for trunk/undel.c
- Timestamp:
- Sep 24, 2007, 1:06:44 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/undel.c
r841 r844 1 1 #define INCL_DOS 2 2 #define INCL_WIN 3 #define INCL_LONGLONG4 3 5 4 #include <os2.h> … … 17 16 HAB hab; 18 17 HMQ hmq; 19 FILESTATUS3 Lfs;18 FILESTATUS3 fs; 20 19 static CHAR fullname[CCHMAXPATH]; 21 20 CHAR *thisarg = NULL; … … 34 33 } 35 34 DosError(FERR_DISABLEHARDERR); 36 if (thisarg && !DosQueryPathInfo(thisarg, FIL_STANDARD L, &fs, sizeof(fs))) {35 if (thisarg && !DosQueryPathInfo(thisarg, FIL_STANDARD, &fs, sizeof(fs))) { 37 36 if (DosQueryPathInfo(thisarg, 38 37 FIL_QUERYFULLNAME, fullname, sizeof(fullname))) … … 49 48 FM3ModHandle, UNDEL_FRAME, (PVOID) fullname); 50 49 } 51 DosSleep(250 L);50 DosSleep(250); 52 51 WinDestroyMsgQueue(hmq); 53 52 }
Note:
See TracChangeset
for help on using the changeset viewer.