source: trunk/changelog@ 2209

Last change on this file since 2209 was 2209, checked in by sandervl, 26 years ago

* empty log message *

File size: 37.6 KB
Line 
1 /* $Id: changelog,v 1.576 1999-12-27 14:45:11 sandervl Exp $ */
2
3 99-12-27: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: Fixed GetActiveWindow (also fixes problem with mouse messages
5 in FreeCell)
6 Fixed PeekMessageW (used old way of calling OSLibWinPeekMsg)
7 Changed translation of message filters (still not 100% correct)
8 Fixed bugs in OSLibPeekMessage
9
10 99-12-26: Christoph Bratschi <cbratschi@datacomm.ch>
11 - USER32: implemented WM_NCHITTEST, added WM_SYSCOMMAND handling
12 ported DIALOG_IsAccelerator
13 implemented Get/SetMessageExtraInfo
14 extended DefWindowProcA handling
15 several other bug fixes
16 - COMCTL32: changed non-client handling
17
18 99-12-24: Sander van Leeuwen <sandervl@xs4all.nl>
19 - USER32: Fixed bug in OSLibWinQueryQueueStatus (uninitialized local variable)
20 Changed message handling. Messages are translated in Get/PeekMessage
21 now. (or in the PM window handler, if it was sent directly)
22 TranslateMessage now translates WM_(SYS)KEYDOWN/UP to
23 WM_(SYS)(DEAD)CHAR
24 Fixed ChildWindowFromPointEx
25 - CRTDLL: Removed excessive logging (compile with DEBUGALL=1 to enable it)
26 - SRC\MAKEFILE: Included dplayx
27
28 99-12-24: Markus Montkowski <mmontkowski@gmx.de>
29 - dplayx: compiles and links now
30
31 99-12-22: Christoph Bratschi <cbratschi@datacomm.ch>
32 - USER32: fixed WinGetKeyState in WM_MOUSEMOVE (WinAmp's equalizer works now fine)
33
34 99-12-21: Jens Wiessner <wiessnej@rfi.de>
35 - MSVCRT: Updated msvcrt20 & msvcrt40 def files
36
37 99-12-21: Christoph Bratschi <cbratschi@datacomm.ch>
38 - USER32: merged controls with WINE 991212
39 fixed listbox WM_SETREDRAW bug
40
41 99-12-21: Markus Montkowski <mmontkowski@gmx.de>
42 - ddraw: Some cleanup in surface handling
43 more colorconversion code:
44 8bit to all hicolormodes(16,24,32) and
45 between the highcolormodes
46 Do Colorfills for the above modes.
47 Removed inhertiance from IBASE in DDRectangle
48
49 99-12-21: Sander van Leeuwen <sandervl@xs4all.nl>
50 - ADVAPI32: Fixed some bugs in service.cpp; implemented some service apis
51 - INCLUDE\WIN: Added winsvc.h; removed service definitions from winbase.h & winreg.h
52 - NTDLL/CRTDLL: Moved all CRT functions into CRTDLL
53 CRTDLL should contain all shared RTL functions (in addition
54 to those present in the win32 version); this is more
55 consistent than putting half the rtl functions in NTDLL
56 and the rest in CRTDLL.
57 - CRTDLL: Fixed memory allocation bug (CRTDLL_calloc called calloc, while
58 free calls HeapFree; everything uses private CRTDLL heap now)
59 - MSVCRT: Removed all forwarders from def file. Link with CRTDLL instead.
60 NOTE: Non-existant forwarders don't generate errors when loading
61 this dll!!!
62 Linking with a lib makes sure the import really exists.
63 - KERNEL32: Moved memmove to NTDLL (forwarded to CRTDLL)
64 - ODINCRT: Added wrappers for file io functions (to prevent FS corruption)
65
66 99-12-20: Rene Pronk <R.Pronk@twi.tudelft.nl>
67 - WINMM: Bugfixes in waveOutOpen (flags) for winamp
68
69 99-12-20 Markus Montkowski <mmontkowski@gmx.de>
70 - USER32: Fixed Coordinate conversion in WM_HITTEST (don't use handles as a coordinates)
71
72 99-12-20: Christoph Bratschi <cbratschi@datacomm.ch>
73 - USER32: changed icon title font size in SystemParametersInfo to 12
74 fixed DrawIcon/DrawIconEx
75 fixed GetIconInfo (still bugs in load/create code)
76
77 99-12-20: Sander van Leeuwen <sandervl@xs4all.nl>
78 - CRTDLL: Added bsearch from EMX
79 - MSVCRT: Copy dlls into bin directory. Most apps seem to work
80 (Notes, solitaire, winhlp32)
81 - NTDLL: Added qsort, ftol, CIpow, ltoa, ultoa
82 (ftol fixes black Notes toolbars)
83
84 99-12-20: Jens Wiessner <wiessnej@rfi.de>
85 - MSVCRT: Added stubs
86
87 99-12-19: Christoph Bratschi <cbratschi@datacomm.ch>
88 - USER32: fixed child positioning
89 removed CS_SIZEREDRAW, do it manually if window really needs it
90 handled in WM_CALCVALIDRECTS, PM aligns windows top-left
91 -> much faster, Calc: radiobuttons are at the right place
92 RegEdit: treeview redraw problems fixed
93
94 99-12-19: Sander van Leeuwen <sandervl@xs4all.nl>
95 - ADVAPI32/NTDLL: Forward sid apis to ntdll (need to check return
96 type of some Rtl SID apis (bool or status dword?))
97 Moved Service apis into separate sourcefile
98 Implemented some service apis (not completely)
99 - KERNEL32: Fix for loading images (RSRC_LOAD)
100 Implemented FindResourceExA/W
101 CreateProcessW bugfix (string conversion)
102 FormatMessageA/W bugfix (wrong calling convention for
103 WVSPRINTFAPROC type (should be WIN32API!) -> fixes crash
104 in regedit
105 - USER32: SendMessageW bugfix
106
107 99-12-18: Achim Hasenmueller <achimha@innotek.de>
108 - COMCTL32: Merged with latest WINE 991212 code
109
110 99-12-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
111 - KERNEL32: Partially implemented GetThreadContext, Read/WriteProcessMemory
112
113 99-12-18: Christoph Bratschi <cbratschi@datacomm.ch>
114 - USER32: added MDI menu window switching
115 fixed ChildWindowFromPointEx
116 fixed WM_MDIDESTROY
117
118 99-12-18: Sander van Leeuwen <sandervl@xs4all.nl>
119 - MSACM32: Compile fixes (internal.cpp)
120 - USER32: WindowFromPoint fix (return 0 if no windows found, not the desktop wnd handle)
121 SetMenuItemInfoA bugfix (for novamatic) (still not completely
122 implemented though)
123 - AVIFIL32: updated with the latest code from Wine 991212.
124 - KERNEL32: Partly implemented GetCurrencyFormatA/W (not correct, but
125 to make apps happy)
126 Added handlemanager class for tokens and HMHandleGetUserData
127 export to query the userdata dword of a handle.
128 - NTDLL: Partially implemented some Token & SID apis in order to get
129 MS Office 2000 install to work.
130
131 99-12-18: Jens Wiessner <wiessnej@rfi.de>
132 - MSACM32: Updated with latest Wine code (991212)
133 - CRTDLL: Removed the ERRNO Defs from CRTINC.H and included ERRNO.H
134
135 99-12-17: Christoph Bratschi <cbratschi@datacomm.ch>
136 - USER32: WM_NOTIFYPARENT: map cursor pos
137 implemented MDI cascade/tile
138
139 99-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
140 - KERNEL32: Delete thread's THDB structure when it quits
141 - USER32: Hook removal bugfix
142
143 99-12-17: Edgar Buerkle <Edgar.Buerkle@gmx.net>
144 - INCLUDE\winconst.h/wintypes.h/win\winbase.h: Added definitions
145 - KERNEL32: Set DEBUG_PROCESS flag for DEBUG_ONLY_THIS_PROCESS flag
146 in CreateProcess (open32 doesn't support the latter flag)
147
148 99-12-16: Christoph Bratschi <cbratschi@datacomm.ch>
149 - USER32: fixed 'dancing characters' in edit control
150 ported GrayString from WINE
151 desktop: terminate string in WM_GETTEXT
152 free timers after WM_DESTROY
153 - GDI32: several bug fixes for text output functions
154 implemented PolyTextOutA/W
155
156 99-12-14: Sander van Leeuwen <sandervl@xs4all.nl>
157 - USER32: Tasklist fix
158 Rewrote SendMessage handling; Uses WinSendMsg now if window
159 is created by a different process/thread.
160 Started with port of Wine hook code
161 ShowWindowAsync calls ShowWindow now (not correct, but better than nothing)
162 - KERNEL32: Added GetTHDBFromThreadId (used in USER32) & link THDB structures during creation
163 Put back old interlocked code (Wine port + InterlockedExchange fix)
164 - GDI32: Extra logging for Create*Rgn apis
165
166 99-12-13: Edgar Buerkle <Edgar.Buerkle@gmx.net>
167 - KERNEL32: Added null pointer checks in lstrcatA/W
168 - USER32: Removed unicode to ascii translation during MDI child creation
169 (message translation code already takes care of this)
170
171 99-12-13: Sander van Leeuwen <sandervl@xs4all.nl>
172 - KERNEL32: Fixed performance problem in mmap.cpp
173 Report correct dll when exe loading fails
174 Fixed command line bug in CreateProcess (if app & cmd line
175 are specified, skip exe name in cmd line)
176 - INCLUDE\WIN\winnt.h: Header fixes
177 - Porting.txt: Fixed sample makefile (you need to add -D__i386__ as compiler option)
178 - USER32: NotifyParent bugfix (use id & handle of 1st child window)
179 Added WM_INITMENU message support
180 Experimental CS_PARENTDC support (disabled for now)
181
182 99-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
183 - KERNEL32: Fixes for on-demand page loader; currently disabled by
184 default because it interferes with debugging (too many
185 exceptions are generated)
186 To enable it undefine COMMIT_ALL in kernel32\winimagepeldr.cpp.
187 Dll unload fix for PE loader (fixes crash when Notes quits)
188 - PE2LX: Don't link with odincrt -> 'Not enough storage to complete
189 initialization' error. Reason unknown.
190 - INCLUDE\string.h: Use original strncpy for PE2LX
191
192 99-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
193 - KERNEL32: Changed logging in winimagepeldr.cpp
194 Uses private log with dprintfs instead of file streams.
195 Added support for private dll logs (see comments in misc.h)
196 //To use private dll logging, define PRIVATE_LOGGING and
197 //add Open/ClosePrivateLogFiles (see below) functions to the dll
198 //to open close the private logfile. The logfile handle should
199 //be stored in the _privateLogFile variable
200 //dprintf can be called like this:
201 //dprintf((LOG, "PE file : %s", szFileName));
202
203 99-12-11: Jens Wiessner <wiessnej@rfi.de>
204 - CRTDLL: Fix for GetMainArgs (fixes windiff)
205 - MSVCRT: Fix for GetMainArgs
206
207 99-12-10: Sander van Leeuwen <sandervl@xs4all.nl>
208 - KERNEL32: Fix for CreateFileMapping; return old handle if
209 trying to open existing mapping
210 commitPage: Commit page by page, not entire range (could
211 leave holes if VirtualQueryMem range != nrpages)
212
213 99-12-09: Christoph Bratschi <cbratschi@datacomm.ch>
214 - GDI32: fixed TextOut and ExtTextOut bugs
215
216 99-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
217 - KERNEL32: Fixes in lstrcpynWtoA
218 Added code heap.
219 Ported ExpandEnvironmentStringsA/W (Wine: 991114)
220 Create HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Windows
221 key and necessary subkeys (including CSD version)
222 Corrected return value of Read/WriteFile (must be boolean, not
223 an error code)
224 - USER32: Major changes for window procedures
225 Now identical to Wine. Window is unicode only if it's
226 window procedure comes from a unicode class.
227 Add thunk code for procedures to store type.
228 - ODINCRT: Replaced strncpy with one that stops at terminating 0
229 - INCLUDE\string.h: VAC version + minor change for strncpy
230 - WIN32K\PE2LX: Link with odincrt.lib for rtl functions
231
232 99-12-08: David Raison <djr@lemur.co.uk>
233 - OLEAUT32: Typelib handling:
234 Parsing of typelib improved - Several
235 incorrect pointer problems fixed
236 esp. start addr. of var table.
237 Use EnumResourceNames to locate
238 embedded TYPELIB resources.
239 Bugfixes.
240
241 99-12-07: Achim Hasenmueller <achimha@innotek.de>
242 - WSOCK32: Moved old implementation to wsock32/old and promoted
243 wsock32/new (based on PMWSOCK.DLL) as the default implementation
244
245 99-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
246 - KERNEL32: Fixed string resource load bug (last character of string resource set to 0)
247 - KERNEL32: Always commit memory for page memory maps
248 - KERNEL32: Fixed bug in InterlockedExchange (parameters reversed)
249 - USER32: Do not call selectClientArea during BeginPaint -> creates
250 painting problems for i.e. memory SDK sample & AbiWord
251 Disabled CS_OWNDC support for now -> otherwise certain
252 windows never receive a WM_ERASEBKGND message. (memory SDK sample)
253 Fix for Abiword & memory.exe -> extra check for owndc in Begin/EndPaint
254
255 99-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
256 - KERNEL32/OLEAUT32: Renamed OLEAUT32 to OLAUTOS2 to avoid conflicts
257 with Lotus SmartSuite (again..)
258 - KERNEL32: Fixed memory map bugs
259
260 99-12-06: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
261 - WINMM: Ported MMIO from Wine (now SoundRecorder can open wave files)
262
263 99-12-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
264 - KERNEL32: Temporary hack in GetFullPathNameA to replace forward
265 slashes by backslashes (needed for WinZip 7.0)
266 Fixed dprintf in lstrcmpW
267
268 99-12-06: Daniela Engert <dani@ngrt.de>
269 - ODINCRT: change debug *allocs to return zeroed memory (instead of
270 filled with 0xAA). Some applications expect it this way.
271
272 99-12-06: Patrick Haller <phaller@gmx.net>
273 - KERNEL32: Reimplemented InterlockedXXX-APIs to
274 be NT4 compatible
275
276 99-12-05: Christoph Bratschi <cbratschi@datacomm.ch>
277 - KERNEL32: Only convert the string and not everything in UnicodeToAsciiStringN
278
279 99-12-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
280 - KERNEL32: Better logging for CreateProcessA
281 - DDRAW: io_init1 -> PUSH OFFSET FLAT:devname
282
283 99-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
284 - GDI32: Changed DEFAULT_GUI_FONT to WarpSans.9
285 - USER32:InSendMessage,GetMessagePos,GetMessageTime & ReplyMessage
286 implemented using PM apis.
287 Update client rectangle in WM_WINDOWPOSCHANGED handler in
288 pmwindow.cpp. (client can change without affecting the
289 frame window's size/position; previously we never sent an update)
290 -> fixes wrong button position in RealPlayer
291 Changed FCF_TITLEBAR selection. Removes some, but not all, unwanted
292 windows from the tasklist.
293 - INCLUDE\heapstring.h: Changed definition of lstrcpy(n)AtoW/WtoA
294 - KERNEL32: CHanged lstrcpy(n)AtoW/WtoA
295 Fixed bug in InterlockedExchange (ret 4 should be ret 8)
296 -> fixes crashes in Mozilla viewer & WinAmp (2.5e)
297 - LZ32: Removed prototype of lstrcpyAtoW
298
299 99-12-04 Achim Hasenmueller <achimha@innotek.de>
300 - WSOCK32\NEW: Fixed bugs with incorrect relay window invocation
301 Improved debugging messages, better error handling
302 Works very well now, VP Buddy does not crash anymore
303 Please test well, then it can be promoted
304
305 99-12-04 Markus Montkowski <mmontkowski@gmx.de>
306 - GDI32: Implemented DEFAULT_GUI_FONT for GetStockObject
307 DIBSecttion now get the DC Palette on creation and
308 updated if DC Pal changes.
309
310 99-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
311 - USER32: Experimental WM_ERASEBACKGND change
312 Ignore PM WM_ERASEBACKGROUND (return 1), always
313 send one in BeginPaint and call BeginPaint/EndPaint
314 in the default window handler for WM_(ICON)PAINT
315
316 99-12-03: Christoph Bratschi <cbratschi@datacomm.ch>
317 - USER32: removed WS_* check in scrollbar code
318 - GDI32: moved line API's to line.cpp
319
320 99-12-03: Edgar Buerkle <Edgar.Buerkle@gmx.net>
321 - GDI32: Fixes for CreateDCW & CreateICW
322 - COMCTL32: Fixed PROPSHEET_CollectSheetInfo
323
324 99-12-03: Jens Wiessner <wiessnej@rfi.de>
325 - OLE32: Corrected CoSetState Stub.
326 - OLEAUT32: Changed return value (CreateDispTypeInfo) from S_OK to
327 E_OUTOFMEMORY
328 - NTDLL: Changed dprintfs for strcpy/strcat
329
330 99-12-02: Patrick Haller <phaller@gmx.net>
331 - WSOCK32\NEW: Improvements.
332 - INCLUDE: Some macro fixes in misc.h and odinwrap.h
333
334 99-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
335 - USER32: Rewrote EnumThreadWindows/EnumWindows
336 Fixed GetParent
337
338 99-12-02 Markus Montkowski <mmontkowski@gmx.de>
339 - GDI32: Implemented:
340 CombineTransform, CreateDIBPatternBrush, CreateDCW,
341 CreateEnhMetaFileW, CreateICW
342 Fixed memory leak in GetTextFaceW (didn't free ASCII buffer)
343 Enhanced StretchBlt to support DIBSections
344
345 99-12-02: Achim Hasenmueller <achimha@innotek.de>
346 - WSOCK32\NEW: Not really working :(
347 Fixed WSAAsyncGetHostByName, added request data to table
348
349 99-12-01: Patrick Haller <phaller@gmx.net>
350 - WSOCK32\NEW: Working now :)
351
352 99-12-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
353 - KERNEL32: Removed check in CreateFileMapping (hFile == -1 && (protect & SEC_COMMIT))
354 - USER32: Added check for valid parent if window is child in ::SetWindowPos
355 - SHELL32: SHGetFileInfoA: set pidlLast to NULL)
356
357 99-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
358 - ODINCRT: Wrappers for allocation/free functions to prevent them
359 from trashing FS. (happens when called from a thread (
360 that is not the main thread))
361 Also wrappers for new/delete calls. (for the same reason)
362 - KERNEL32: Increase max nr of open files when DosOpen fails with ERROR_TOO_MANY_OPEN_FILES
363 (OSLibDosOpen)
364 Don't translate strings if api fails (FindFirstFileW/FindNextFileW)
365 GetProcessTimes (TODO: Doesn't use RtlExtendedIntegerMultiply correctly!)
366 - ADVAPI32: Fix for RegQueryInfoKeyW (return size = 0)
367 - GDI32: Ported GetTextCharset & GetTextCharsetInfo (Wine: 991031)
368 Ported Set/GetSystemPaletteUse
369
370 99-11-30: Patrick Haller <phaller@gmx.net>
371 - WSOCK32\NEW: Experimental rewrite using PMWSOCK successful.
372 One problem regarding ODIN message translation remains,
373 TELNET works fine under debugger.
374
375 99-11-30: Sander van Leeuwen <sandervl@xs4all.nl>
376 - KERNEL32: Ported Wine process apis (not done) (kernel32\process.cpp)
377 Unitialized data section bugfix.
378 - NTDLL: Fixed exports (missing ordinals) and created correct library
379 - ADVAPI32: Call security apis in ntdll (security.cpp; Wine 991031)
380
381 99-11-30: Jens Wiessner <wiessnej@rfi.de>
382 - CRTDLL: Completed GetMainArgs
383 Implemented several functions.
384 - MSVCRT: Made some changes and implemented new functions.
385 Now builds msvcrt, msvcrt20 & msvcrt40 dlls.
386
387 99-11-30: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
388 - KERNEL32: Another VirtualProtect bugfix
389
390 99-11-30: Daniela Engert <dani@ngrt.de>
391 - USER32: eliminate superfluous background erases (part 1)
392
393 99-11-29: Sander van Leeuwen <sandervl@xs4all.nl>
394 - KERNEL32: Added EnumResourceTypesA/W (not tested)
395 - USER32: Get/SetActiveWindow bugfixes (don't return OS/2 wnd handles)
396
397 99-11-29: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
398 - ODINCRT: Added experimental console hack in initterm.cpp.
399 - PE2LX: Kernel32.dll is the first entry import module name table.
400 This makes kernel32.dll init first.
401 - KERNEL32: Odincrt.lib is the first library to be included during linking.
402 This hopefully will make odincrt init first.
403 - KERNEL32: Implemented EnumResourceNamesA/W. Added a test
404 skeleton for Kernel32 in the src\kernel32\test directory.
405
406 99-11-28: Jens Wiessner <wiessnej@rfi.de>
407 - CRTDLL: Implemented several functions that used to be stubs.
408
409 99-11-28: Sander van Leeuwen <sandervl@xs4all.nl>
410 - COMDLG32: Merged with latest wine code (CVS tree dated 991126)
411
412 99-11-27: Jens Wiessner <wiessnej@rfi.de>
413 - MSVCRT: Added stubs
414
415 99-11-27: Christoph Bratschi <cbratschi@datacomm.ch>
416 - USER32: fixed edit bugs
417 ported WINE monitor code and implemented PM driver
418
419 99-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
420 - USER32: Implemented GetInputState and GetQueueStatus
421 Rewrote MsgWaitForMultipleObjects for waiting on 0 objects
422 (== waiting for messages)
423 - KERNEL32: TLS bugfix (callback == 0)
424
425 99-11-25: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
426 - USER32: Extended key fix (for cursor keys in Quake 2/Hexen 2 etc)
427
428 99-11-26: Christoph Bratschi <cbratschi@datacomm.ch>
429 - USER32: fixed rect mapping -> edit scroll redraw bug fixed
430 WM_ERASEBKGND: brush or system color
431
432 99-11-25: Sander van Leeuwen <sandervl@xs4all.nl>
433 - KERNEL32: Removed hardcoded dependency on ADVAPI32 (cpu.cpp); fixes
434 logging of multiple apps.
435 TLS bugfix (exception arrived too early; print info later on)
436 Continue during OSLibDosAliasMem if size != range (needs to
437 be fixed)
438 Allow executables to export functions (MS Word)
439 - USER32: PUT BACK GetWindowContextHelpId & SetWindowContextHelpId
440 - USER32: Win32BaseWindow::SetParent bugfix (setparent(0))
441 Changed broadcasting of messages. Check all valid window handles.
442 (TODO: Not efficient)
443 SetWindowLong (GWL_STYLE) fix; don't allow WS_VISIBLE or WS_CHILD
444 bit changes. (Wine does this and Pinball & Wordpad crash
445 if it is allowed)
446 Changed WM_SETREDRAW default handler to directly change
447 style (not call SetWindowLongA)
448 Fixed bugs in GetWindow.
449 - INCLUDE\OS2WRAP.H: Wrong macro fixed (GpiCreatePS didn't have any renaming
450 -> FS corruption)
451
452 99-11-25: Edgar Buerkle <Edgar.Buerkle@gmx.net>
453 - KERNEL32: MultiByteToWideChar & WideCharToMultiByte Wine port (991031)
454
455 99-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
456 - USER32: Fixed desktop window handle (shouldn't be 0)
457 Added support for broadcasting messages (in post/sendmessage)
458 (Note: might not be complete correct to use WinBroadcastMsg)
459 Changed Post(Thread)MessageA/W; now packs message info in
460 shared memory buffer and posts it using a specific PM message.
461 - KERNEL32: Return kernel32path\win in GetWindowsDirectoryA if
462 neither the env variable or odin.ini key is present.
463 (also create this dir)
464 Fixed incorrect dll & exe renaming.
465
466 99-11-24: Christoph Bratschi <cbratschi@datacomm.ch>
467 - USER32: added missing button styles and messages
468 several bug fixes
469
470 99-11-23: David Raison <djr@lemur.co.uk>
471 - OLE32: Fixed buffer size error in StringFromGUID2.
472 - OLEAUT32: Rearranged iPicture
473
474 99-11-23: Sander van Leeuwen <sandervl@xs4all.nl>
475 - USER32: Added stubs for ChangeDisplaySettingsExA/W
476 Ported Wine EnumDisplaySettingsA/W (991031)
477 Query display color depth during init.
478 - KERNEL32: Ported and adapted Wine GetSystemInfo (now creates
479 both cpu & fpu registry keys)
480 Added code for SMP machines (GetSystemInfo)
481 Added IsProcessorFeaturePresent
482
483 99-11-23: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
484 - USER32: ChangeDisplaySettingsA bugfix
485 - WSOCK32: Compile fix (include two more headers)
486
487 99-11-22: Patrick Haller <phaller@gmx.net>
488 - WSOCK32\NEW: Experimental rewrite using PMWSOCK, incomplete yet
489
490 99-11-22: Edgar Buerkle <Edgar.Buerkle@gmx.net>
491 - KERNEL32: Workaround in HMWaitForSingleObject for Open32 handles
492 (i.e. process handles)
493 - USER32: Extra checks in wvsnprintfA/W
494 Check if InfoPtr == NULL in STATIC_SetBitmap
495 - GDI32: SetDIBits support for DIB sections
496
497 99-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
498 - KERNEL32: Add default renaming profile keys (ole32 & netapi32) to
499 odin.ini if they're not already there. (during init)
500 DosAliasMem fix; removed ReadFile hack.
501 - KERNEL32: Rewrote pe loader for on-demand loading of sections
502 Currently all sections are preloaded because of problems
503 with page faults in dprints.
504 - USER32: Removed GetIconInfo hack. Causes problems for other apps.
505 TODO: Double height reported by Open32 for color icon masks!
506
507 99-11-22: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
508 - KERNEL32: VirtualProtect bugfix
509
510 99-11-21: Christoph Bratschi <cbratschi@datacomm.ch>
511 - KERNEL32: Fixed trailing newline bug in LoadMessageA/W,
512 updated to WINE 991031 level
513 - USER32: fixed window text handling
514 added static WM_GETTEXT for SS_ICON style
515
516 99-11-21: Achim Hasenmueller <achimha@innotek.de>
517 - USER32: send WM_SETTEXT for edit and static text controls
518 in SetWindowTextA/W
519 Fixes for original Windows colors (still not
520 accurate though)
521 - COMCTL32: stubbed ImageList_Read and ImageList_Write -
522 implementation missing because OLE stream support
523 required
524
525 99-11-19: Christoph Bratschi <cbratschi@datacomm.ch>
526 - USER32: fixed listbox scrolling
527
528 99-11-14: Achim Hasenmueller <achimha@innotek.de>
529 - COMCTL32: Merged with WINE 991114
530
531 99-11-18: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
532 - KERNEL32: Win32Pe2LxImage didn't issue the setFullPath(szFileName)
533 call during construction.
534 Added a invalid pointer test in OS2Heap::Free which checks
535 that lpMem is within the user address space. (Fixes
536 WinZip 7.0 crash.)
537
538 99-11-17: Christoph Bratschi <cbratschi@datacomm.ch>
539 - USER32/COMCTL32: Fixed cursor handling
540
541*****************************Official Alpha 5 version*********************************
542
543 99-11-14 Markus Montkowski <mmontkowski@gmx.de>
544 - DDRAW: Code cleanup and some fixes in handling blts in the virtuel buffers.
545 Set IOPL =3 for all DXgames needed for RA (Red Alert).
546 - DSOUND: Implemented a fake soundcard so that the bufferpos does advance.
547 Needed for RA. ToDO: Use better calulation for HiresTimers
548
549 99-11-14: David Raison <djr@lemur.co.uk>
550 - OLEAUT32: Tidy up IPicture implentation - now handles fOwn.
551
552 99-11-14: Achim Hasenmueller <achimha@innotek.de>
553 - COMCTL32: Fixed strdupAtoW/WtoA calls
554 Implemented missing undocumented string functions
555
556 99-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
557 - USER32: Implemented GetMenuItemRect
558 Fixed SetParent bug (use frame (not client) handle)
559 Fixed createControls for dialogs (set windowname for ids)
560 Ported LookupIconIdFromDirectory(Ex) (Wine, 991031)
561 Fixed OSLibWinEnableWindow (need to enable/disable both frame and client)
562 Partly ported Wine CopyImage for cursors & icons (disabled
563 because it doesn't work correctly)
564 Workaround for double height of icon masks -> doesn't work
565 100% correctly and IS A DIRTY HACK. (Open32 bug)
566
567 99-11-14: Edgar Buerkle <Edgar.Buerkle@gmx.net>
568 - USER32: Fixed WindowFromPoint
569
570 99-11-14: David Raison <djr@lemur.co.uk>
571 - OLEAUT32: Added beginnings of IPicture interface for VB6 support.
572 Mostly stubs, but enough to get a simple VB6 app started.
573 ICreatePictureIndirect updated.
574
575 99-11-13: Christoph Bratschi <cbratschi@datacomm.ch>
576 - USER32: fixed more edit bugs
577 merged controls with wine-991031
578
579 99-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
580 - KERNEL32: Fixed problem with ReadFile & aliased memory
581 (DosRead doesn't like writing to memory addresses
582 returned by DosAliasMem -> search for original
583 memory mapped pointer and use that one)
584 -> fixes problems in Lotus Notes 5.0
585 Also commit these pages before calling DosRead as exceptions
586 in the kernel can't be handled by us.
587 - KERNEL32\PELDR:
588 Better error reporting
589 - COMDLG32: Fixed bug in strlen: first check if pointer != NULL (FILEDLG95_InitUI)
590 Bugfix: ofn->lpTemplateName can be string id, so
591 don't always treat it as a string
592 Check pointer returned by CBGetItemDataPtr, if != -1, then
593 it's a string. (FILEDLG95_OnOpen)
594
595 99-11-12: Christoph Bratschi <cbratschi@datacomm.ch>
596 - USER32: fixed several edit bugs
597
598 99-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
599 - GDI32: Changes + fixes in DIBSection bitblt (fixes Quake 2)
600 - KERNEL32: Added handlemanager class for device drivers
601 Put devio.cpp in device driver class. (NOT TESTED)
602
603 99-11-12: Edgar Buerkle <Edgar.Buerkle@gmx.net>
604 - KERNEL32: Wrote file io replacement apis (preliminary version)
605 (not enabled)
606
607 99-11-12: Jens Wiessner <wiessnej@rfi.de>
608 - IMAGEHLP,IMM32,OLECLI32,OLEDLG,OLESVR32,PSAPI,RASAPI32
609 Updates
610 - MSVCRT: Added stubs
611
612 99-11-11: Sander van Leeuwen <sandervl@xs4all.nl>
613 - USER32: Implemented GetWindowContextHelpId & SetWindowContextHelpId
614 Implemented GetKeyboardState (NOT TESTED)
615 Ported SwitchToThisWindow, GetKeyboardLayout, TranslateCharsetInfo
616 GetKeyboardLayoutNameA/W (991031)
617 Fixed Win32Dialog::SetWindowLongA for dlg proc.
618 - GDI32: Implemented EnumFontsA/W. Fixed bugs in EnumFontFamiliesW
619 (NEWTEXTMETRICW is different from NEWTEXTMETRICA)
620 - KERNEL32: Turn off debugging by default when compiling the nodebuginfo
621 build (can be enabled by setting the env. variable WIN32LOG_ENABLED)
622 Fixes for GetVersionSize/Struct for images that aren't loaded.
623 Fixed heap corruption in GetEnvironmentVariableW.
624
625 99-11-10: Christoph Bratschi <cbratschi@datacomm.ch>
626 - USER32: ShowScrollBar: create not existing scrollbars
627
628 99-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
629 - KERNEL32: Rewrote OSLibDosAllocMem to only return addresses
630 aligned at 64kb boundaries (that's what NT's VirtualAlloc
631 does and it fixes problems with MS Word & StarCraft)
632 Fixed wrong dprintf in GetProcAddress.
633 Added code to VirtualAlloc for committing pages of memory mapped
634 files. (Word needs this)
635 - USER32: Implemented WindowFromDC
636 Call WinWaitMsg from WaitMessage instead of calling Open32 api.
637 Added wvsnprintfA export (required for NTDLL)
638 - NTDLL: Link with user32.lib, don't import by name directly
639 (needs to be done for the kernel32 forwards too)
640 - GDI32: Removed flipping of bitmaps in dibsection (no longer necessary)
641
642 99-11-10: Patrick Haller <phaller@gmx.net>
643 - COMDLG32: Fix: erroneous filter data for GetOpenFileName now tolerated
644 Open32 keeps to close to the docs :)
645 - SHELL32: Add: update to WINE19991108
646 - GDI32: Add: Font remapping via ODIN.INI (MS Sans Serif -> WarpSans)
647
648 99-11-10: knut.st.osmundsen <knut.stange.osmundsen@pmsc.no>
649 - PE2LX: Added OLE32 to the lie list. New Base class.
650 - WIN32K: Disabled Yield - this solves problems running win32k
651 at SMP kernels and logging problems on all kernels.
652 Added some parameters.
653
654 99-11-09: Rene Pronk <R.Pronk@twi.tudelft.nl>
655 - USER32: Added support for control mnemonics (Alt-key sends BM_CLICK
656 to buttons if key == mnemonic for that control)
657
658 99-11-09: Christoph Bratschi <cbratschi@datacomm.ch>
659 - GDI32: fixed line functions -> don't draw end pixel
660 - COMCTL32/USER32: removed some old workarounds
661 - USER32: fixed system resource handling
662
663 99-11-09: Sander van Leeuwen <sandervl@xs4all.nl>
664 - OLE32: Renamed dll to OLE32OS2 to avoid conflicts with Lotus SmartSuite's
665 OLE32.dll
666 - OLE32/OLEAUT32/AVIFIL32: compilation fixes
667 - KERNEL32: Fixed lstrcpynAtoW & lstrcpynWtoA, OS/2 unicode api
668 translated up to maxlen characters -> heap corruption
669 in Solitaire. Translate upto min(stringlength+1, maxlen).
670 Also, terminate at strlen(strlength), not maxbuf-1 (lstrcpynWtoA)
671 - KERNEL32: Added code for renaming dlls (i.e. OLE32 <-> OLE32OS2)
672 Odin.ini in bin directory needs to be present for PE loader
673 (includes renaming entries for OLE32 & NETAPI32)
674 NOTE: Dll name in ole32.lib has changed, so a complete recompilation
675 is required!
676 NOTE 2: We might need to add some code to the file io apis in case
677 dirty apps try to read directly from system dlls.
678 - KERNEL32: No need to export private apis by name & ordinal (ord is enough)
679 - INCLUDE\odinwrap.h
680 added wrappers that don't print dbg messages (regardless
681 of whether DEBUG is defined or not)
682 - INCLUDE\misc.h: Added dprintf2 function for extensive logging
683 - KERNEL32,USER32, replaced commented out dprintf calls with dprintf2
684 Changed makefiles to enable dprintf2 (DEBUGALL)
685 - KERNEL32: Wrapper heap apis with ODIN* macros. -> fixes FS corruption
686 - USER32: Fixed LoadMenuIndirectW (didn't call new code)
687
688 99-11-09: Patrick Haller <phaller@gmx.net>
689 - NTDLL: Add: various new functions added (DbgXXX)
690
691 99-11-08: Markus Montkowski <mmontkowski@gmx.de>
692 - WING32: Added first implementation of this old 32bit DLL.
693
694 99-11-08: Edgar Buerkle <Edgar.Buerkle@gmx.net>
695 - KERNEL32: SetCurrentDirectory, CreateDirectory, RemoveDirectory bugfixes.
696 (remove terminating backslash if present)
697
698 99-11-08: Patrick Haller <phaller@gmx.net>
699 - COMCTL32: Fix: EDIT: if obtaining font information fails,
700 prevent division by zero
701 - NTDLL: Add: numerous integer arithmetic functions added
702
703 99-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
704 - KERNEL32: Fixed bug in thread handler (exception handler set
705 at wrong moment)
706 Ported Wine critical section code (991031), Open32
707 doesn't correctly fill in the CRITICAL_SECTION structure.
708 Limit size of memory mapped files.
709 - USER32: PostThreadMessageA/W fix
710
711 99-11-06: Sander van Leeuwen <sandervl@xs4all.nl>
712 - DINPUT: Ported Wine code (991031) (not tested yet)
713 - USER32: Added code for sending mouse events to dinput.dll
714 Added PM <-> win32 key translation (used in dinput.dll)
715
716 99-11-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
717 - USER32: GetMenuStringW fix
718
719 99-11-05: Achim Hasenmueller <achimha@innotek.de>
720 - COMCTL32: Source code cleanup, remove warnings, corrected typecasts
721 Added logging, warnings for stub functions
722 - KERNEL32: Source code cleanup, fix warnings
723 - USER32: Source code cleanup, fix warnings
724
725 99-11-05: Patrick Haller <phaller@gmx.net>
726 - COMCTL32: Fix: TREEVIEW_Edit_Subclass is called with freed infoPtr
727 This only cures the symptoms, not the origin!
728
729 99-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
730 - USER32: Fixed InsertMenuA
731 Message translation fix for WM_USER+n messages (GetMessage)
732 Extra translation.
733 Rewrote/Ported LoadStringA/W (similar to Wine now)
734 - KERNEL32: Changed FindResource, string id translation should be done
735 in LoadStringA/W (done that way in Wine)
736 Fixed GetModuleHandleA
737
738 99-11-05: Jens Wiessner <wiessnej@rfi.de>
739 - MSVFW32: Updated to Wine level 991031
740 - IMM32: Replaced some FIXME entries with dprintf;
741 - KERNEL32: Added _wsnprintfA to .DEF file for export (MSACM32 needs this)
742 - INCLUDE: New MSACM.H from Wine991031 (MSACM32 needs this)
743 - MSACM32: New MSACM32.DLL (Ported from Wine9910131)
744
745 99-11-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
746 - GDI32: Fixes for StretchDIBits & GetDIBColorTable
747 - USER32: Fixes for ArrangeIconicWindows & ShowOwnedPopups
748 NULL pointer checks in hasWindowName/hasClassName/FindClass
749 Message translation fix for WM_USER+n messages
750 - OLE32: Always create OLE window class
751 - KERNEL32: Null pointer check in lstrcmpiA
752 - SHELL32: Corrected export of Shell_GetCachedImageIndex
753
754 99-11-04: Sander van Leeuwen <sandervl@xs4all.nl>
755 - SHLWAPI: Fixed makefile
756 - USER32: Put back Dani's dialog fix (WS_CLIPSIBLINGS bit for dialog controls)
757 (fixes winhlp32 & comboboxes)
758
759 99-11-04: Patrick Haller <phaller@gmx.net>
760 - WNETAP32: Add: numerous undocumented functions stubbed
761 - ADVAPI32: Add: LsaXXX-functions stubbed
762 - USER32: Fix: wvsprintfA/W fixed (buffer overwrite)
763 - KERNEL32: Fix: unnamed kernel objects (events, mutexes, semaphores)
764
765 99-11-03: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
766 - Makefiles: Changes to build the libraries first
767
768 99-11-03: Sander van Leeuwen <sandervl@xs4all.nl>
769 - COMDLG32: Import from shlwapi as the original Wine code does
770 - SHELLL32: Added exports
771 - SHLWAPI: Link with shell32.lib for forwarders + added exports
772 - USER32: Fixed mouseactivate for subclassed OS/2 windows (scrollbars)
773 Fixed CreateIconIndirect (Wine file dialog now shows button
774 icons correctly)
775 Don't clear WS_CLIPSIBLINGS bit in OSSetWindowStyle.
776 Removed fix in PMFRAME WM_ADJUSTWINDOWPOS: Previous fix breaks
777 a lot of apps (button.exe/style.exe/header4.exe)
778 (fix = call default frame handler when receiving this msg
779 when the window hasn't been 'created' yet)
780
781 99-11-03: Christoph Bratschi <cbratschi@datacomm.ch>
782 - USER32: fixed modal dialogs
783 added WM_CONTEXTMENU
784 - COMCTL32: implemented statusbar size grip
785
786 99-11-03: Patrick Haller <phaller@gmx.net>
787 - KERNEL32: Fix: undocumented behaviour in SearchPathA
788 and bugfix in SearchPathW
789 - USER32: Fix: TrackPopupMenuEx lpPM can be NULL
790 Fix LoadBitmapA checked for incorrect return value
791
792 99-11-02 Markus Montkowski <mmontkowski@gmx.de>
793 - DDRAW: Changed debug output to DDRAW: ...
794 Copied Framebuffer if in colorconversion mode for Normal Blits to
795 the primary surface. => Map Editor of Red Alert works.
796
797 00-11-02: Achim Hasenmueller <achimha@innotek.de>
798 - COMCTL32: Incorporated latest WINE 991031 updates
799 Note: listview doesn't paint properly now. Will be fixed later.
800
801 99-11-02: Markus Montkowski <mmontkowski@gmx.de>
802 - DDRAW: Changed interface handling of Surfaces=> Quake 2 runs again!
803
804 99-11-02: Patrick Haller <phaller@gmx.net>
805 - SHELL32: Up to current WINE level
806 - SHLWAPI: Created (in WINE it mostly links to SHELL32)
807
808 99-11-02: Sander van Leeuwen <sandervl@xs4all.nl>
809 - INCLUDE\odinwrap.h:
810 fixed wrong define (_ODINWARP instead of _ODINWRAP)
811 Only check the heap for consistency when DEBUG_ODINHEAP is
812 defined.
813 - USER32: Uncommented EDIT_NOTIFY_PARENT call in EDIT_WM_SetFocus
814 (yesterday's showwindow fix makes sure no WM_SETFOCUS msgs
815 arrive before the dialog received it's WM_INITDIALOG msg)
816 Fixed more FS corruption in dc.cpp.
817 - SHELL32: Added extra exports for comdlg32
818 - COMDLG32: Ported Wine file & find common dialogs (991031)
819 Find & Replace dialogs enabled, Wine code called for
820 file dialogs if the app supplies a dialog template.
821 NOTE: Disabled for now. Comctl32 isn't stable enough
822 for the Win95 style Wine comdlg dialogs.
823 Fixed check for find/replace dialog. Notepad uses 32 byte
824 buffer, so why does the wine code fail for < 80 bytes?
825 Fixed display of find/replace dialog -> if not hooked
826 show dialog!
827 - makefiles: Added debugsmp/nodebuginfosmp/releasesmp options to
828 start two nmake process to build everything on two cpus.
829
830 99-11-01: Sander van Leeuwen <sandervl@xs4all.nl>
831 - USER32: Delete all process windows & classes in exitlist handler
832 Set hwndInsertBehind to HWND_BOTTOM for group boxes
833 (fixes problems when groupbox control is defined after
834 controls inside it in dialog template)
835 Mouse activate fix.
836 Don't activate child windows in ShowWindow.
837 - WINMM: Return failure for waveOutGetDevCapsA/W when there's no
838 audio hardware present.
839
840
841 99-11-01: Daniela Engert <dani@ngrt.de>
842 - USER32: add WS_CLIPSIBLINGS to not-WS_GROUP style STATIC controls
843 (fixes missing text in WELCOME)
844
845 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
846
847 This is a hack!
848
849 Dialog controls which contain/surround other controls *need* to be
850 created with the WS_CLIPSIBLINGS style.
851
852 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Note: See TracBrowser for help on using the repository browser.