Changeset 2900
- Timestamp:
- Feb 26, 2000, 2:27:51 PM (25 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/changelog ¶
r2896 r2900 1 /* $Id: changelog,v 1.752 2000-02-25 18:09:25 cbratschi Exp $ */ 1 /* $Id: changelog,v 1.753 2000-02-26 13:27:49 bird Exp $ */ 2 3 2000-02-27: knut st. osmundsen <knut.stange.osmundse@pmsc.no> 4 - pdwin32.tools: "New" tool, MAKE_CMD. Passes on the DEBUG and 5 NODEBUGINFO macros variables to the next make job. 6 (It's better to have it here than to have it in nearly 7 all makefiles. And we keep forgetting it...) 8 9 2000-02-26: knut st. osmundsen <knut.stange.osmundse@pmsc.no> 10 - WIN32K: *Symbol Database is implemented. Contains symbols for most 11 retail kernels. (see win32k.txt or readme.txt) 12 *No scanning of the os2krnl file, the loaded image is now 13 scanned to determin which build, debug/retail and smp/uni. 14 *16-bit logging. 15 *Extract.exe rule. Extract.exe program generates the 16 SymDb.c source file found in dev16 from a collections of 17 kernel symbol files. 2 18 3 19 2000-02-25: Christoph Bratschi <cbratschi@datacomm.ch> … … 30 46 NOTE: I've fixed similar bugs before. Somebody should verify 31 47 all comctl32 handlers... 32 48 33 49 2000-02-23: Christoph Bratschi <cbratschi@datacomm.ch> 34 50 - USER32: export 55AA pattern functions for COMCTL32 … … 41 57 - USER32: Fixed bug in window class ctor (windowProc not set to 0) 42 58 (only showed up in release build) 43 - KERNEL32: Fixed bug in commitPage (winimagepeldr.cpp) 59 - KERNEL32: Fixed bug in commitPage (winimagepeldr.cpp) 44 60 (only showed up in release build) 45 61 Fixed wrong calling convention for SetLastError calls -
TabularUnified trunk/include/pdwin32.tools ¶
r2714 r2900 1 # $Id: pdwin32.tools,v 1. 5 2000-02-09 23:52:04bird Exp $1 # $Id: pdwin32.tools,v 1.6 2000-02-26 13:27:51 bird Exp $ 2 2 # ODIN / win32os2 Project 3 3 # … … 19 19 DEPEND = $(PDWIN32_TOOLS)\fastdep.exe 20 20 DOWITHDIRS = $(PDWIN32_TOOLS)\dowithdirs.cmd 21 !ifdef DEBUG 22 !ifdef NODEBUGINFO 23 MAKE_CMD=nmake /nologo DEBUG=1 NODEBUGINFO=1 24 !else 25 MAKE_CMD=nmake /nologo DEBUG=1 26 !endif 27 !else 28 MAKE_CMD=nmake /nologo 29 !endif 21 30 22 31
Note:
See TracChangeset
for help on using the changeset viewer.