| [4864] | 1 | /* $Id: changelog,v 1.1200 2001-01-01 11:47:30 sandervl Exp $ */
|
|---|
| [4454] | 2 |
|
|---|
| [4864] | 3 | 2001-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - USER32: o Menu cast bugfix (bitmap handle is 32 bits)
|
|---|
| 5 | (Fixes menu bitmaps in Lotus Notes 5)
|
|---|
| 6 |
|
|---|
| [4861] | 7 | 2000-12-31: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 8 | - KERNEL32: o Implemented ReadFile/WriteFile for COM devices (UNTESTED)
|
|---|
| 9 | - ODINCRT: o Don't export anything by name (we import everything by ordinal
|
|---|
| 10 | and it saves 15k)
|
|---|
| 11 |
|
|---|
| [4852] | 12 | 2000-12-30: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 13 | - INSTALL: o Don't include odin.ini anymore.
|
|---|
| 14 | - KERNEL32: o Create 'Font Mapping' Odin.ini entry during WarpIn install
|
|---|
| 15 | (odininst execution)
|
|---|
| [4854] | 16 | - GDI32: o System object can't be deleted (e.g. system pens & brushes)
|
|---|
| 17 | Check for those in DeleteObject.
|
|---|
| 18 | (TODO: also check for others (fonts)??)
|
|---|
| 19 | (Fixes missing background in DreamWeaver 4 demo install dialogs)
|
|---|
| [4852] | 20 |
|
|---|
| [4849] | 21 | 2000-12-29: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 22 | - USER32: o Export OS2ToWin32Handle & Win32ToOS2Handle with stdcall
|
|---|
| [4861] | 23 | calling convention. (not mangled)
|
|---|
| [4849] | 24 | - GDI32: o Changes for above exports
|
|---|
| 25 |
|
|---|
| [4844] | 26 | 2000-12-27: Jeroen van den Horn <J.vandenHorn@chello.nl>
|
|---|
| 27 | - WININET: o Resync with latest Wine + fixes/additions
|
|---|
| 28 |
|
|---|
| 29 | 2000-12-27: Yuri Dario <mc6530@mclink.it>
|
|---|
| 30 | - USER32: o Wrong flag check in SetWindowPos (didn't include e.g. SWP_NOSENDCHANGING)
|
|---|
| 31 |
|
|---|
| [4832] | 32 | 2000-12-21: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 33 | - USER32: o Fixed two FS bugs in main PM window handler. (FS not restored
|
|---|
| 34 | before returning)
|
|---|
| 35 | o Split up frame and child window PM handlers.
|
|---|
| 36 | o Don't send PM WM_ACTIVATE to child windows in WM_WINDOWPOSCHANGED
|
|---|
| 37 | (fixes some activation problems)
|
|---|
| 38 | o Put back code to add MDI windows to menu (latest update doesn't work)
|
|---|
| 39 | o Properly invalidate non-client area when SetWindowPos is called
|
|---|
| 40 | with SWP_FRAMECHANGED. (fixes menu switch)
|
|---|
| 41 | o SetParent bugfix; when putting window at the top of the z-order we
|
|---|
| 42 | mustn't activate it (SWP_NOACTIVATE)
|
|---|
| 43 | (fixes activate problem when starting up Lotus Notes 5)
|
|---|
| 44 | - OLEAUT32: o Ported latest Wine version (12-22-2000)
|
|---|
| 45 | (TODO: Port David's additions)
|
|---|
| 46 | - TOOLS\INSTALL:
|
|---|
| 47 | o 3Dfx glide & opengl removed from base install
|
|---|
| 48 | (download opengl3dfx.zip from ftp.os2.org if you need it)
|
|---|
| 49 | Dllfixes win32k feature disabled (enabled by default); it's
|
|---|
| 50 | causing too many problems right now.
|
|---|
| 51 |
|
|---|
| 52 | 2000-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 53 | - USER32: o Call WH_CBT hook during OS/2 WM_CREATE message. Some apps
|
|---|
| 54 | rely on the window being valid when this hook is called.
|
|---|
| 55 | (Girotel used GetDC which previously failed)
|
|---|
| 56 | o Use different PM window class for child windows. Solves some
|
|---|
| 57 | focus problems. (TODO)
|
|---|
| 58 | o Some MDI changes/fixes (from Wine)
|
|---|
| 59 |
|
|---|
| 60 | 2000-12-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| [4831] | 61 | - USER32: o Edit control: Limits removed. EM_SETTEXTLIMIT has no effect in
|
|---|
| 62 | NT4, SP6 (EM_GETTEXTLIMIT only returns that value).
|
|---|
| 63 | Limits are simply ignored, no EN_MAXTEXT notification is ever sent.
|
|---|
| 64 | (fixes license edit control in Microsoft Visual C++ 4.2 install)
|
|---|
| 65 | o Static control: SS_REALSIZEIMAGE is supposed to prevent
|
|---|
| 66 | control resizing, but that doesn't appear to happen in NT
|
|---|
| 67 | (although the SDK docs are very clear about this)
|
|---|
| 68 | Need to figure out why. (not resizing messes up the bitmap
|
|---|
| 69 | control in the Microsoft Visual C++ 4.2 install program)
|
|---|
| 70 | Same thing happens with a very simply test app, so the installer
|
|---|
| 71 | does nothing special.
|
|---|
| 72 | - WNASPI32: o Fixed bug in access aspi method. (wait check reversed)
|
|---|
| 73 | - MAKEFILES:o Update for overriding stack size of executables
|
|---|
| 74 | - PELDR: o Fixed makefiles (PEC was built as a PM app -> must be VIO!)
|
|---|
| [4832] | 75 | - KERNEL32: o Only call DosGetNamedSharedMem & free view if map created
|
|---|
| 76 | by different process. (fixes hang in Lotus Notes 5)
|
|---|
| [4482] | 77 |
|
|---|
| [4831] | 78 | 2000-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 79 | - KERNEL32: o GetVolumeInformationA bugfix (lpFileSystemNameBuffer == NULL &
|
|---|
| 80 | lpFileSystemFlags != NULL)
|
|---|
| 81 | o Wrong calls to VirtualFree in memory map & tls code (size must be zero)
|
|---|
| 82 | o Shared memory address retrieved with DosGetNamedSharedMem not properly freed
|
|---|
| [4475] | 83 |
|
|---|
| [4831] | 84 | 2000-12-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 85 | - Win32k: o Fixed problem with newer kernels having a different
|
|---|
| 86 | prolog to ldrCheckInternalName. (Seems like either new
|
|---|
| 87 | compiler or better optimization.)
|
|---|
| 88 | o Corrected bad loop condition in configure.cmd causing
|
|---|
| 89 | a neverending loop during build.
|
|---|
| 90 | - Win32kCC: o Corrected the setting of the -DllFixes parameter.
|
|---|
| 91 | - readme.txt:
|
|---|
| 92 | o Corrected minor flaw: Win32k option "-PE" should be "-Pe".
|
|---|
| [4479] | 93 |
|
|---|
| [4831] | 94 | 2000-12-10: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 95 | - Win32k: o Fixed minor error in the *printf function.
|
|---|
| 96 | o Added the 14063 kernels (*1129[d].zip).
|
|---|
| 97 | o Removed OS/2 kernel limit for DLL name length.
|
|---|
| 98 | (Experimental - see readme.txt option -Dllfixes.)
|
|---|
| 99 | o Removed OS/2 kernel restriction for DLL extention.
|
|---|
| 100 | (Experimental - see readme.txt option -Dllfixes.)
|
|---|
| 101 | - readme.txt:
|
|---|
| 102 | o Updated win32k.sys with new parameter, -Dllfixes.
|
|---|
| [4465] | 103 |
|
|---|
| [4831] | 104 | 2000-12-09: Patrick Haller <patrick.haller@innotek.de>ú
|
|---|
| 105 | - KERNEL32: o accelerated FindFirst/FindNext calls (oslibdos.cpp)ú
|
|---|
| 106 | - makefile: o added support for "profile" debug buildú
|
|---|
| [4462] | 107 |
|
|---|
| [4831] | 108 | 2000-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 109 | - GDI32: o Temporary fix for bugs introduced by recent handle changes.
|
|---|
| [4468] | 110 |
|
|---|
| [4831] | 111 | 2000-12-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 112 | - USER32: o Changed CFLAGS and CXXFLAGS overrides to a CDEFINES override.
|
|---|
| 113 | (This is the new way to alter the standard C and C++ defines.)
|
|---|
| [4465] | 114 |
|
|---|
| [4831] | 115 | 2000-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 116 | - USER32: o Missing USING_OPEN32 define in makefile. Might be responsible
|
|---|
| 117 | for a lot of problems that have recently emerged.
|
|---|
| [4454] | 118 |
|
|---|
| [4831] | 119 | 2000-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 120 | - USER32: o Must call selectClientArea after GpiSetClipRegion in BeginPaint
|
|---|
| 121 | When a window with CS_OWNDC looses focus, for some reason
|
|---|
| 122 | GpiSetClipRegion resets the window dc origin back to (0,0).
|
|---|
| 123 | (fixes e.g. Visual C++ 4.2 setup when switching between
|
|---|
| 124 | setup window & another app)
|
|---|
| 125 | - KERNEL32: o Rewrote GetLogicalDrives
|
|---|
| 126 | o Minor fixes for GetDriveType (return value equals DRIVE_NO_ROOT_DIR
|
|---|
| 127 | for junk input; does not change last error)
|
|---|
| [2659] | 128 |
|
|---|
| [4831] | 129 | 2000-12-06: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 130 | - USER32: o added debug macros to HOOK_ functions
|
|---|
| 131 | - GDI32: o added debug macros to Font related functions
|
|---|
| [4438] | 132 |
|
|---|
| [4831] | 133 | 2000-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 134 | - USER32: o 16 bits menu handles are now supported (fixes crash in MultiEdit)
|
|---|
| 135 | - GDI32: o Changes to local object handle management (for user32 menus)
|
|---|
| 136 | - KERNEL32: o Don't assume resources start at section boundary.
|
|---|
| 137 | Must use DataDirectory virtual address.
|
|---|
| 138 | (fixes winrar self-extracting executables)
|
|---|
| [4438] | 139 |
|
|---|
| [4831] | 140 | 2000-12-03: chris.wohlgemuth <chris.wohlgemuth@cityweb.de>
|
|---|
| 141 | - KERNEL32: o Fix for TVFS & GetDiskFreeSpaceA (Windows Media Player
|
|---|
| 142 | install complains about cluster size)
|
|---|
| 143 | (DRIVESPACE section, key CLUSTERTO32 in odin.ini)
|
|---|
| 144 | o Fix in PROFILE_GetSection for crash in Windows Media Player install
|
|---|
| 145 | - WINMM: o Ported Wine MCI code
|
|---|
| [4429] | 146 |
|
|---|
| [4831] | 147 | 2000-12-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 148 | - TOOLS\install:
|
|---|
| 149 | o More installation script fixes.
|
|---|
| 150 | - Win32k: o Fatal error! I mixed flags for C and C++ compilation during
|
|---|
| 151 | makefile rewrite. This caused C++ exceptionhandlers to be
|
|---|
| 152 | generated and registered, leading to Trap 000e during boot.
|
|---|
| 153 | o Confirmed working on the Warp 4 14.060 (at least halfstrict)
|
|---|
| 154 | kernel (w41106.zip).
|
|---|
| [4428] | 155 |
|
|---|
| [4831] | 156 | 2000-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 157 | - TOOLS\install:
|
|---|
| 158 | o Installation script fixes.
|
|---|
| [4423] | 159 |
|
|---|
| [4831] | 160 | 2000-12-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 161 | - *, makefiles, pdwin32k.*, odin32.*.mk, Configure.cmd:
|
|---|
| 162 | o Made some addjustments to the makefiles. Most important
|
|---|
| 163 | eliminating nearly all ODIN32_<dir> directory macros.
|
|---|
| 164 | o Changed all "PDWIN32_" to "ODIN32_".
|
|---|
| 165 | o Renamed pdwin32.$(CCENV).* to pdwin32.*.$(CCENV).mk
|
|---|
| 166 | and pdwin32.* to odin32.*.mk.
|
|---|
| 167 | o Added tiny rexx script, Configure.cmd, which generates
|
|---|
| 168 | a file with absolute directory macros; makefile.inc.
|
|---|
| 169 | Makefile.inc also includes /include/odin32.mk.
|
|---|
| 170 | NB. This script is automatically invoked the first time
|
|---|
| 171 | you start nmake or wmake on /makefile.
|
|---|
| 172 | o Restructured the win32k.sys makefiles. Now all but
|
|---|
| 173 | the win32k.sys makefile is using the new makefile style.
|
|---|
| 174 | o The tools makefiles are mostly according to the new style.
|
|---|
| 175 | o Compiler and debug/release specific library directory.
|
|---|
| 176 | ODIN32_LIB will now point to a compiler specific directory
|
|---|
| 177 | under /lib. Debug and release files are also separated.
|
|---|
| 178 | o The <>exp.def are now generated in the $(OBJDIR) directory.
|
|---|
| 179 | o .lib-files are also targeted to $(OBJDIR).
|
|---|
| 180 | o More Watcom friendly makefiles. (I didn't say that they are
|
|---|
| 181 | working with Watcom! I removed VAC dependencies when
|
|---|
| 182 | possibled or else tried to make wmake fail.)
|
|---|
| 183 | o Moved readmes in the /bin/glide tree to the source
|
|---|
| 184 | directories under opengl.
|
|---|
| 185 | - tools/install:
|
|---|
| 186 | o Removed odininst.wis - odin.cmd generates this.
|
|---|
| 187 | o Tried to make odin.cmd more readable; uses
|
|---|
| 188 | the wic.exe option -c <dir> to set current directory.
|
|---|
| 189 | ARG! Why can't wic.exe return anything but 0? When files
|
|---|
| 190 | aren't found for example, I have no way of finding it out.
|
|---|
| 191 | o Added package which adds win32k.sys to the config.sys.
|
|---|
| 192 | Seems like I have to add a file to that packet, so win32k.ddp
|
|---|
| 193 | works as dummy file. It also seems like there is a but in
|
|---|
| 194 | WarpIn 0.95 - it inserts the line between the '\r' and the '\n'
|
|---|
| 195 | chars at the end of the previous line.
|
|---|
| [4420] | 196 |
|
|---|
| [4831] | 197 | 2000-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 198 | - KERNEL32: o Added renaming for MCICDA (MCICDA.DLL -> MCICDA.DRV)
|
|---|
| [4409] | 199 |
|
|---|
| [4831] | 200 | 2000-12-02: chris.wohlgemuth <chris.wohlgemuth@cityweb.de>
|
|---|
| 201 | - WINMM\MCICDA:
|
|---|
| 202 | o Rewrote it for OS/2
|
|---|
| [4409] | 203 |
|
|---|