Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/dircnrs.c
r1878 r1890 174 174 #include "pathutil.h" // AddBackslashToPath 175 175 #include "copyf.h" // ignorereadonly 176 #if 0 177 #define __PMPRINTF__ 176 177 #ifdef PMPRINTF 178 #define _PMPRINTF_ // Enable debug macros 178 179 #include "PMPRINTF.H" 179 180 #endif -
trunk/dll/filldir.c
r1880 r1890 168 168 #include "pathutil.h" // AddBackslashToPath 169 169 #include "tmrsvcs.h" // ITIMER_DESC 170 #if 0 171 #define __PMPRINTF__ 170 171 #ifdef PMPRINTF 172 #define _PMPRINTF_ // Enable debug macros 172 173 #include "PMPRINTF.H" 173 174 #endif -
trunk/dll/flesh.c
r1882 r1890 79 79 #include "common.h" // IncrThreadUsage DecrThreadUsage 80 80 #include "pathutil.h" 81 #if 0 82 #define __PMPRINTF__ 81 82 #ifdef PMPRINTF 83 #define _PMPRINTF_ // Enable debug macros 83 84 #include "PMPRINTF.H" 84 85 #endif … … 88 89 89 90 static PSZ pszSrcFile = __FILE__; 90 91 91 92 92 static INT tidFleshWorkListThread = -1; // 2015-08-08 SHL -
trunk/dll/makefile
r1856 r1890 3 3 4 4 # Copyright (c) 1993-98 M. Kimes 5 # Copyright (c) 2002 , 2015Steven H. Levine5 # Copyright (c) 2002-2020 Steven H. Levine 6 6 7 7 # 22 May 03 SHL Correct icon dependencies … … 48 48 # 24 Feb 14 JBS Ticket #500: Suspended use of high memory by commenting out the calls to exehdr 49 49 # 13 Aug 15 SHL Add listutil 50 # 25 Jan 20 SHL Add PMPRINTF support 50 51 51 52 # Environment: see makefile_pre.mk and makefile_post.mk … … 54 55 # WARNALL - add more warnings if defined, standard warnings if not defined 55 56 # FORTIFY - enable FORTIFY heap checking if defined, omit FORITY support if not defined 57 # PMPRINTF - enable PMPRINTF support, omit PMPRINTF support if not defined 56 58 # USE_RC - use rc.exe if defined, use wrc.exe if not defined 57 59 # NOHIGHMEM - support high memory use (i.e exehdir /highmem) 60 61 # PMPRINTF support assumes PMPRINTF.H in INCLUDE path 62 # PMPRINTF support assumes PMPRINTF.LIB in LIB path 58 63 59 64 BASE = fm3dll … … 159 164 !endif 160 165 166 !ifdef PMPRINTF 167 CFLAGS += -dPMPRINTF 168 !endif 169 161 170 # for fm3res only 162 171 CFLAGSR = -bt=os2 -mf -bd -bm -olirs -s -j -we -wx -zfp -zgp -zp4 -zq … … 362 371 -del *~ 363 372 373 # eof -
trunk/dll/misc.c
r1840 r1890 122 122 #include "fortify.h" 123 123 #include "info.h" // driveflags 124 #if 0 125 #define __PMPRINTF__ 124 125 #ifdef PMPRINTF 126 #define _PMPRINTF_ // Enable debug macros 126 127 #include "PMPRINTF.H" 127 128 #endif -
trunk/dll/select.c
r1883 r1890 74 74 #include "flesh.h" 75 75 #include "treecnr.h" // fExpandAll 76 #if 0 77 #define __PMPRINTF__ 76 77 #ifdef PMPRINTF 78 #define _PMPRINTF_ // Enable debug macros 78 79 #include "PMPRINTF.H" 79 80 #endif -
trunk/dll/sortcnr.c
r1851 r1890 28 28 #include "sortcnr.h" 29 29 #include "valid.h" // TestCDates 30 #if 0 31 #define __PMPRINTF__ 30 31 #ifdef PMPRINTF 32 #define _PMPRINTF_ // Enable debug macros 32 33 #include "PMPRINTF.H" 33 34 #endif -
trunk/dll/update.c
r1876 r1890 51 51 #include "misc.h" // PostMsg 52 52 #include "fortify.h" 53 #if 0 54 #define __PMPRINTF__ 53 54 #ifdef PMPRINTF 55 #define _PMPRINTF_ // Enable debug macros 55 56 #include "PMPRINTF.H" 56 57 #endif -
trunk/dll/valid.c
r1877 r1890 696 696 } 697 697 } 698 698 else if (*argv[x] == '`' && isalpha(argv[x][1])) { 699 699 700 700 CHAR *p = &argv[x][1];
Note:
See TracChangeset
for help on using the changeset viewer.