source: trunk/changelog@ 3404

Last change on this file since 3404 was 3403, checked in by bird, 26 years ago

* empty log message *

File size: 9.6 KB
RevLine 
[3403]1 /* $Id: changelog,v 1.896 2000-04-16 07:12:01 bird Exp $ */
[2659]2
[3401]3 2000-04-17: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
4 - KERNEL32: Reorganized/reworte LoadLibrary/LoadLibraryEx code.
[3403]5 isPEImage was changed to return 1 if DLL and 2 if EXE.
6 (It still returns FALSE if not valid PE image.)
[3401]7
8 - include\odin32validate.h:
9 New header file. Parameter validation macros.
10
[3403]11
[3394]12 2000-04-16: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
[3392]13 - KERNEL32: Before reading Sanders last message I had rewritten most of
14 the findDll function. So, as my implementation seems a bit
15 more flexible I decided to commit it.
16 Currently it's searching the three LIBPATH paths too. If
17 this causes any real trouble we'll disable this.
18
19 findDll now returns TRUE if a file were found. Callers are
20 corrected to test for this.
21
[3384]22 2000-04-15: Christoph Bratschi <cbratschi@datacomm.ch>
[3392]23 - COMCTL32: rewrote listview item handling: sort bug fix,
24 allows >= 4.70 support
25 implemented several new messages
[3384]26
[3379]27 2000-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
[3392]28 - WSOCK32: Async select fix (VPBuddy can connect again)
29 - KERNEL32: Remove terminating backslash in FindFirstFileA (if present)
[3381]30 (otherwise DosFindFirst fails)
31 Fixed flushing of file maps (wrong VirtualQuery parameter)
[3383]32 Path search fix for dlls
[3389]33 Dll search order:
[3392]34 1) exe dir
35 2) current dir
36 3) windows system dir (kernel32 path)
37 4) windows dir
38 5) path environment variable
[3389]39
[3392]40 - ODINCRT: Added checks for failing mallocs
41 - USER32: Corrected return value of EnableWindow
[3387]42 Send WM_CANCELMODE message when disabling window
[3386]43 (return true if previous state was disabled, else false (sdk docs))
44 Don't send mouse messages to disabled windows; reroute
45 them to their parent windows (if any)
[3379]46
[3377]47 2000-04-14: Sander van Leeuwen <sandervl@xs4all.nl>
[3392]48 - KERNEL32: Hardcoded system & windows dir
49 system dir = kernel32 dir
50 windows dir = kernel32 dir\win
[3377]51 Fixed dll attach for pe2lx/win32k & lx Odin executables
52 Command line fixes (now starts with full path of exe)
53 Search for dlls in:
[3392]54 1) current dir
[3377]55 2) win32 exe dir
56 3) windows system dir
57 4) path
58 Append backslash if GetFileAttributes fails (and it's missing
59 from the filename)
60 - PELDR/KERNEL32: Fixed starting of executable with spaces in name
61 (might not be 100% complete yet)
62 Fixes for relative path of executable
[3392]63 - ODIN.INI.TXT: Removed DIRECTORIES section
[3377]64
[3373]65 2000-04-13: Sander van Leeuwen <sandervl@xs4all.nl>
66 - USER32: Zero thread message structure before dispatching it
67 Prevents app from sending the same posted message twice
68 (causing problems when freeing the postmsg struct)
69 (fixes RealPlayer 7 Update service)
[3392]70 - CRTDLL: Fixed div (result must be returned in edx:eax)
71 - PE: Check PATH for executable file
[3373]72
[3368]73 2000-04-12: Christoph Bratschi <cbratschi@datacomm.ch>
[3392]74 - COMCTL32: listview: completed most version 4 features
[3368]75
[3367]76 2000-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
77 - USER32: Added support for topmost windows
78
[3362]79 2000-04-10: David Raison <djr@lemur.co.uk>
[3392]80 - COMDLG32: fixed wrong lParam in file dialog
[3362]81
[3355]82 2000-04-09: Sander van Leeuwen <sandervl@xs4all.nl>
83 - GDI32: Y inversion fix for dib sections blits
[3392]84 - WINMM: GetPosition fix (don't return 0 when stream not active)
85 - KERNEL32: Fixed OSLibDosFindFirst. Return error if First DosFirstFirst
[3361]86 fails. (fixes RealPlayer 7 install)
[3355]87
88 2000-04-09: Yuri Dario <mc6530@mclink.it>
[3392]89 - INCLUDE(\WIN):
90 - odin.h: define NONAMELESSUNION only for VA3.0 (now works with VA4);
91 remove buildin.h when invoked from resource compiler.
92 - commctrl.h: new macros
93 - mmsystem.h: define DUMMYUNIONNAME with same code used in other
94 headers to avoid precompiling errors.
95 - shlguid.h: missing ID
96 - shlobj.h: missing shlguid.h include
97 - windows.h: define CINTERFACE only for C compilers or VA3.x
98 - windowsx.h: macros
99 - wingdi.h: few AW defines
100 - winuser.h: new macros
[3355]101
[3350]102 2000-04-08: Christoph Bratschi <cbratschi@datacomm.ch>
[3392]103 - COMCTL32: added new styles and functionality, bug fixes
[3350]104
[3349]105 2000-04-08: Sander van Leeuwen <sandervl@xs4all.nl>
[3353]106 - WINMM: Restart, pause & underrun fixes
[3392]107 - KERNEL32: Fixed bug in CompareStringW. Unicode conversion was
[3353]108 causing heap corruption. (RealPlayer 7 crashes)
[3349]109
[3345]110 2000-04-07: Michal Necasek <mike@mendelu.cz>
111 - DDRAW\NEW: Experimental fullscreen DDraw, VIDEOPMI based.
112 May not work with all video cards and may cause all
113 kinds of trouble. But works swell for eg. Fallout 1/2
114 or HMM3. Contains some extra bugs compared to the
115 windowed DDraw, ie. Moorhuhn and others don't work
116 with it at all. Please tell me about your experience
117 with this shameless hack.
118
[3339]119 2000-04-07: Sander van Leeuwen <sandervl@xs4all.nl>
[3345]120 - WINMM: Don't restart when already playing
[3339]121 - USER32: Print mark in debug log with WriteLog (#ifdef DEBUG), not dprintf
[3340]122 Workaround for paint problems in RealPlayer 7 Update 1.
123 (don't clip the dc with a region in DoNCPaint if the clip
124 region has the same size as the window; doing so creates
125 update problems for no obvious reason)
[3345]126 - GDI32: Only change bitmap size in SetDIBitsToDevice if bitmap
[3342]127 is not compressed. (fixes crash during startup in Excel)
128 NOTE: Open32 doesn't implement compression type conversion
129 correctly. (black splash screen for RLE8 bitmap)
[3392]130 - KERNEL32: Return length of windows or system directory when
[3346]131 GetWindowsDirectory/GetSystemDirectory is called with
132 a NULL pointer
[3339]133
134 2000-04-07: David Raison <djr@lemur.co.uk>
[3345]135 - USER32: Set lfSmCaptionFont structure in NONCLIENTMETRICSA
[3339]136 (SystemParametersInfoA/SPI_GETNONCLIENTMETRICS)
137
[3335]138 2000-04-07: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
139 - TOOLS\DBGINFO: Sym2Hll is now able to convert .SYM files into HLL
140 debuginfo and add it to LX executables. This might be
141 quite useful if you want to see system DLL while debugging.
142 But before you add debuginfo to all dll's in c:\os2\dll
143 I have to warn that this is _very_ alpha software. Do always
144 make a backup (Sym2Hll don't create backups!) and have
145 recovery boot disks ready!
146
[3327]147 2000-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
[3345]148 - WINMM: Fixed message callback once more (previous fix broke rp7)
[3331]149 Fixed restart
[3327]150
[3329]151 2000-04-08: Michal Necasek <mike@mendelu.cz>
152 - WINMM: Moved phwo == NULL check below format query handling.
153 (enables sound in Jack Jazzrabbit; still not right though)
154
[3324]155 2000-04-05: David Raison <djr@lemur.co.uk>
156 - OLEAUT32: Turned default DEBUG-info down.
157
[3322]158 2000-04-05: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
159 - Win32k: Added fixpack 13 symbols to the symbol database.
[3327]160 Using win32k.sys with fp13 works fine here.
[3322]161
[3319]162 2000-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
[3345]163 - WINMM: Smallest waveout buffer size = 128 bytes
[3327]164 Fixed callback bugs (reported by Michal Necasek)
[3319]165
[3312]166 2000-04-03: David Raison <djr@lemur.co.uk>
[3345]167 - OLE32: Added CoCreateGUID (calls RPCRT4.UuidCreate)
168 - RPCRT4: Beginning of new dll:
169 RpcStringFreeA, RpcStringFreeW, UuidCompare
170 UuidCreate, UuidCreateNil, UuidEqual
171 UuidFromStringA, UuidFromStringW, UuidHash
172 UuidIsNil, UuidToStringA, UuidToStringW
[3312]173
[3306]174 2000-04-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
[3345]175 - SHELL32: don't sort files case sensitive
[3306]176
177 2000-04-02: Christoph Bratschi <cbratschi@datacomm.ch>
[3345]178 - KERNEL32: FindFirst: don't return "." and ".." in root
179 wrote long to short name conversion
180 added error code converter
181 - USER32: removed 'What You See Is What You Get On First Of April'
[3306]182
[3296]183 2000-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
[3345]184 - USER32: dc.cpp cleanup
185 - GDI32: Dib section sync bugfix (todo: rgb 565 to 555 conversion if bpp == 16)
[3301]186 Set y inversion to 0 if dib section isn't flipped
187 (fixes upside down flash videos in RealPlayer 7)
[3345]188 - WINMM: Faked mixer apis
[3296]189
[3293]190 2000-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
[3345]191 - GDI32: Fixed dibsection bitblits. (wrong updates of realplayer 7
[3293]192 videos)
193
[3290]194 2000-04-01: Christoph Bratschi <cbratschi@datacomm.ch>
[3345]195 - USER32: added WYSIWYGOFOA interface
[3290]196
[3289]197 2000-04-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
[3293]198 - USER32: Fixed track frame width & height (now you can actually
[3289]199 see the tracking frame when moving a window)
200
Note: See TracBrowser for help on using the repository browser.