Changeset 907 for trunk/dirsize.c
- Timestamp:
- Jan 6, 2008, 8:26:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dirsize.c
r552 r907 9 9 Copyright (c) 2004 Steven H.Levine 10 10 11 Revisions 11 Jun 02 SHL -Baseline12 06 Jan 04 SHL -Total drives >4GB better11 11 Jun 02 SHL Baseline 12 06 Jan 04 SHL Total drives >4GB better 13 13 14 14 ***********************************************************************/ 15 16 #include <string.h> 17 #include <ctype.h> 15 18 16 19 #define INCL_DOS 17 20 #define INCL_WIN 18 21 19 #include <os2.h>20 #include <stdarg.h>21 #include <stdio.h>22 #include <stdlib.h>23 #include <string.h>24 #include <ctype.h>25 26 #include "dll\fm3dll.h"27 22 #include "dll\fm3dlg.h" 28 23 #include "dirsize.h" 24 #include "dll\fm3dll.h" 29 25 30 26 MRESULT EXPENTRY DirMainProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) … … 101 97 else if (type & DRIVE_REMOTE) 102 98 WinSetDlgItemText(hwnd, DIRSIZE_LOCAL, "Remote drive"); 103 104 105 99 else if (type & DRIVE_VIRTUAL) 100 WinSetDlgItemText(hwnd, DIRSIZE_LOCAL, "Virtual drive"); 101 else if (type & DRIVE_RAMDISK) 106 102 WinSetDlgItemText(hwnd, DIRSIZE_LOCAL, "Ramdisk"); 107 103 else { … … 205 201 } 206 202 207 #ifdef NEVER 203 #ifdef NEVER // 05 Jan 08 SHL fixme to be gone? 208 204 209 205 VOID APIENTRY deinit(ULONG why)
Note:
See TracChangeset
for help on using the changeset viewer.