Changeset 862
- Timestamp:
- Nov 11, 2007, 7:14:10 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/undel.c
r844 r862 1 #define INCL_DOS2 #define INCL_WIN3 1 4 #include <os2.h> 2 /*********************************************************************** 3 4 $Id$ 5 6 File undelete applet 7 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2007 Steven H. Levine 10 11 23 Sep 07 SHL Sync with standards 12 23 Sep 07 SHL Get rid of statics 13 14 ***********************************************************************/ 15 5 16 #include <stdarg.h> 6 17 #include <stdio.h> … … 8 19 #include <string.h> 9 20 #include <ctype.h> 21 22 #define INCL_DOS 23 #define INCL_WIN 24 #include <os2.h> 25 10 26 #include "dll\fm3dll.h" 11 27 #include "dll\fm3dlg.h" … … 13 29 int main(int argc, char *argv[]) 14 30 { 15 16 31 HAB hab; 17 32 HMQ hmq; 18 33 FILESTATUS3 fs; 19 staticCHAR fullname[CCHMAXPATH];34 CHAR fullname[CCHMAXPATH]; 20 35 CHAR *thisarg = NULL; 21 36 INT x; … … 46 61 HWND_DESKTOP, 47 62 UndeleteDlgProc, 48 FM3ModHandle, UNDEL_FRAME, (PVOID) fullname); 63 FM3ModHandle, 64 UNDEL_FRAME, 65 fullname); 49 66 } 50 67 DosSleep(250);
Note:
See TracChangeset
for help on using the changeset viewer.