source: trunk/changelog@ 2248

Last change on this file since 2248 was 2248, checked in by phaller, 26 years ago

.

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