source: trunk/changelog@ 8815

Last change on this file since 8815 was 8815, checked in by sandervl, 23 years ago

* empty log message *

File size: 23.7 KB
Line 
1/* $Id: changelog,v 1.2201 2002-07-01 16:00:31 sandervl Exp $ */
2
3 2002-06-30: Sander van Leeuwen <sandervl@innotek.de>
4 - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W
5 (Wine doesn't do this, but experiments in Windows 2000 show
6 different behaviour)
7 o Edit control: don't beep when receiving Enter (single line
8 control)
9 - DDRAW: o Color fill bugfixes:
10 - fill up to height, not height - 1
11 - check for single pixel line fills -> avoid heap corruption
12
13 2002-06-30: Sander van Leeuwen <sandervl@innotek.de>
14 - KERNEL32: o WriteFile for standard out: convert line feed without
15 carriage return into CR+LF
16 o VirtualFree; don't allow app to decommit stack pages
17 (VAC runtime uses last stack page to store some internal
18 data; if freed pe/pec will crash during exit)
19
20 2002-06-28: Sander van Leeuwen <sandervl@innotek.de>
21 - USER32: o Removed focus fix from 2001-11-20; controls of child
22 dialogs can receive input focus (CVP wizard dialogs)
23 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
24 flag is set (otherwise the hook will be called twice)
25 o Call message filter hook in IsDialogMessageA/W
26 - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)
27
28 2002-06-27: Platon Fomichev <platon@innotek.de>
29 - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently
30 done in windows)
31
32 2002-06-27: Sander van Leeuwen <sandervl@innotek.de>
33 - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
34 is valid. (COMDLG32_UpdateCurrentDir)
35 (fixes crash in file dialog when double clicking on abstract
36 objects like 'My Computer')
37
38 2002-06-26: Sander van Leeuwen <sandervl@innotek.de>
39 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
40 DosDateTimeToFileTime functions;
41 Real problem lies in the fact that the times returned
42 by DosFindFirst, DosFindNext, DosQueryPathInfo &
43 DosQueryFileInfo are in local time; we must convert them
44 to file time (UTC)
45 o Fixed bug in OSLibGetDriveType; broke GetDriveType for
46 floppy drives
47 o Fixed CreateFile for disks
48 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
49 fail if no disk present or when the media has been changed
50 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
51 always succeed
52 o Don't fail CreateFile for disk when DosOpen fails with
53 a sharing violation. Apparently this is allowed in windows;
54 although you can't do much with the handle. (limited to
55 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
56
57 2002-06-26: knut st. osmundsen <bird@anduin.net>
58 - KERNEL32\testcase:
59 o Added testcase for Test of SetConsoleCtrlHandler() and
60 GenerateConsoleCtrlEvent().
61 Note. The last part of it is known to fail since the
62 functions aren't 100% implemented yet.
63 o Added mini testcase for MultiByteToWideChar().
64 o Use the testsuite tools for unit testcases too.
65 - KERNEL32: o Partial implementation of Console Ctrl Handlers.
66 (Ctrl-Break and Ctrl-C)
67 o GetFileType on std files doesn't always return TYPE_CHAR.
68 Ask what kind of filehandle we have.
69 (Solves 'press key' problem with "wcc386.exe > file".)
70 o Enable writing to STDERR. (This might have brought into
71 light a redirection problem.)
72
73 2002-06-25: Sander van Leeuwen <sandervl@innotek.de>
74 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
75 key data; registry.dll returns the wrong value (too big;
76 appears size of internal storage)
77 o FileTimeToSystemTime fix (no problems with WGSS implementation)
78 o Removed bad unicode change
79
80 2002-06-25: knut st. osmundsen <bird@anduin.net>
81 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
82 is bad.
83 - SHELL32: o Bad linked list walking. (accessed node after free)
84 - USER32: o Allocate space the two missing RGB2 entries.
85 o Use "%.*s" and "%.*ls" when we have a string with a length.
86 (Crashing in logging is awfull. Creates zombies!)
87 - ODINCRT: o Reserve low 32MB of address space before initializing
88 the CRT IF we compile with the debug heap (kLib).
89
90 2002-06-24: knut st. osmundsen <bird@anduin.net>
91 - Testsuite:
92 o Most of the watcom case done and working.
93 - Make: o Corrected LIB paths of the win32 watcom setup.
94
95 2002-06-21: knut st. osmundsen <bird@anduin.net>
96 - KERNEL32: o LCMapStringW fix
97
98 2002-06-20: Platon Fomichev <platon@innotek.de>
99 - COMCTL32: o Don't erase background for ownerdrawn listview controls
100 (LISTVIEW_RefreshReport)
101
102 2002-06-20: Sander van Leeuwen <sandervl@innotek.de>
103 - OLE32: o Drag 'n drop fix
104 - USER32: o Drag 'n drop fix
105 o Enabled drag 'n drop again
106 o Added DisableDragDrop
107
108 2002-06-20: knut st. osmundsen <bird@anduin.net>
109 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
110 - Tools: o Added ExecTestcase.cmd for executing a testing and do
111 result logging.
112 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
113 - Testsuite:
114 o Use ExecTestcase.cmd for executing the testcases.
115 Logging & execute all testcases nomatter return values.
116 o Added watcomc.mak which is pretty simple watcom tests.
117 (currently noone of them really work 100%.)
118 o TODO: Make a timeout executer which kills the children when
119 they've been executing too long. This is required in order to
120 run the testsuite without human interaction.
121
122 2002-06-19: Sander van Leeuwen <sandervl@innotek.de>
123 - OLE32: o Drag 'n drop fixes
124
125 2002-06-18: Sander van Leeuwen <sandervl@innotek.de>
126 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
127 mouse state is out of sync and update if necessary
128
129 2002-06-18: knut st. osmundsen <bird@anduin.net>
130 - Win32k: o Fixed compiler warning which caused the M$ compiler
131 to choke on some systems.
132 - Testsuite:
133 o A collection of testcases running real win32 apps.
134 Not finished, just an idea currently, intended for
135 testing odin releases and changes.
136 Currently limiting ourselfs to CUI progs.
137 o A simple DoxyGen testcase is checked in.
138 o Read the micro howto in testsuite/Makefile.
139 - Make: o Synced with outside world. (NMAKE5 changes mostly.)
140 o Added support for TARGET_MODE = TESTCASE.
141 o Added separate tools file for the testsuite.
142
143 2002-06-17: Sander van Leeuwen <sandervl@innotek.de>
144 - USER32: o Disabled drag 'n drop temporarily (not yet stable)
145
146 2002-06-16: Sander van Leeuwen <sandervl@innotek.de>
147 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
148 o Removed: LoadLibraryExA: expand library filename
149 (doesn't happen in Windows)
150 - INSTALL: o Create object for Odin User's Manual + fixed object
151 creation for OdinBug Manual
152 o Include OdinBug.HLP & OdinUser.INF
153 - SHELL32: o Fixed desktop object creation during win32 app install
154
155 2002-06-15: Sander van Leeuwen <sandervl@innotek.de>
156 - SETUPAPI: o Wine resync + added debug wrappers
157 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
158 o Check for NULL parameters in GetFullPathNameW
159 o hmfile.cpp: ParsePath fix; check boundary
160 o LoadLibraryExA: expand library filename; might contain
161 environment variables
162 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
163 registry.dll doesn't like this type for some reason
164 - USER32: o Do proper filtering for PeekMessage
165 - NTDLL: o Forward heap functions to kernel32
166 - QUARTZ: o Removed old code (stub dll now)
167 - AVIFIL32: o Resync with Wine
168 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
169
170 2002-06-13: Sander van Leeuwen <sandervl@innotek.de>
171 - USER32: o SetCustomWndHandleSemName added to override shared semaphore
172 name used to synchronize global window handle array access
173 (to avoid name clash with Odin)
174 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
175 name used to synchronize global memory map list access
176 (to avoid name clash with Odin)
177
178 2002-06-13: Platon Fomichev <platon@innotek.de>
179 - USER32: o Only minimize or maximize window if appropriate style flag set
180
181 2002-06-12: Sander van Leeuwen <sandervl@innotek.de>
182 - KERNEL32: o If bytes present in COM device buffer, read them directly;
183 even for overlapped IO calls.
184
185 2002-06-11: Platon Fomichev <platon@innotek.de>
186 - SHELL32: o Ignore name changes for 'My Computer' and other non-file
187 objects (file dialogs)
188
189 2002-06-11: Sander van Leeuwen <sandervl@innotek.de>
190 - OLEAUT32, SHELL32:
191 o Some Wine updates
192 - KERNEL32: o Overlapped IO bugfixes
193 o Thread TEB linking bugfix
194 o Setup TEB structure before creating thread. Otherwise it's
195 created too late and thread functions called by the app
196 right after thread creation will fail.(e.g. SetThreadPriority)
197
198 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
199 - TOOLS\ODINBUG:
200 o Added VX-REXX sources for OdinBug
201 - DOC: o OdinBug.HLP update
202 - BIN: o OdinBug.exe update
203
204 2002-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
205 - OLE32: o Fixed bug in StgStreamImpl_Seek
206 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
207 (fixes crash in Java 1.4 install)
208 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
209 overlapped IO
210
211 2002-06-09: knut st. osmundsen <bird@anduin.net>
212 - Makefiles:
213 o Exclude dummy.c from the dependencies.
214
215 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
216 - KERNEL32: o Corrections for Austrian NLS file
217
218 2002-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
219 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
220 communication
221 (fixes OpenOffice 1.0 crash during install (at 76%))
222 o Skip window handle 0x68000000 (otherwise more difficult
223 to compare logs with old builds)
224 o Logging changes for comparing source file names
225 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
226 (fixes Java 1.4 installation (first dialog))
227 - COMDLG32: o GetFileDialog95W fix (check if template name is string or
228 numeric id)
229 (fixes OpenOffice 1.0 file open dialog crash)
230 - WININET: o Fixed shlwapi imports
231 - OLE32: o Resync with latest Wine
232 - OLEAUT32: o Resync with latest Wine
233
234 2002-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
235 - SHELL32: o Moved resource files to subdir
236 - COMDLG32: o Compile fix + moved resource files to subdir
237 - KERNEL32: o Export OSLibDosDevIOCtl
238 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
239 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
240 package from May 2001 (or newer) or recent JJSCDROM)
241 - DDRAW: o Fixed clipping bug with non-frame windows
242 o Print FOURCCs supported by Dive
243
244 2002-06-08: knut *st. osmundsen <bird@anduin.net>
245 - TOOLS\WRC:o Compile fix
246
247 2002-06-07: Sander van Leeuwen <sandervl@innotek.de>
248 - SHLWAPI: o Resync with latest Wine & added LGPL license
249 - SHELL32: o Some updates for upcoming resync
250
251 2002-06-06: knut st. osmundsen <bird@anduin.net>
252 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
253
254 2002-06-06: Mark Paulus <mark.paulus@wcom.com>
255 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
256 opening an existing file
257
258 2002-06-06: Sander van Leeuwen <sandervl@innotek.de>
259 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
260
261 2002-06-06: Platon Fomichev <platon@innotek.de>
262 - SHELL32: o Always expand root when initializing treeview
263 o Do not sort tree in TVN_ITEMEXPANDINGA
264
265 2002-06-05: Sander van Leeuwen <sandervl@innotek.de>
266 - WINMM: o Put back original DART buffer size selection code
267 (new one messes up e.g. RealPlayer)
268 o Postpone recording when waveInStart called without
269 any buffers in the queue. Start in during next
270 waveInAddBuffer call.
271 o Fixed DART waveout resume
272
273 2002-06-04: Sander van Leeuwen <sandervl@innotek.de>
274 - USER32: o Fix for AltGr key combinations
275 - WINMM: o Updates for wave playback
276
277 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
278 - USER32, OLE32:
279 o Drag and drop fixes
280 - BIN\ODINBUG:
281 o Update by Herwig Bauernfeind (0.5.6a)
282 - DOC\MANUAL:
283 o Users manual sources by Herwig Bauernfeind
284 - DOC: o Added odinuser.inf by Herwig Bauernfeind
285
286 2002-06-02: Sander van Leeuwen <sandervl@innotek.de>
287 - USER32\CONTROLS:
288 o New dll for user32 controls (latest Wine)
289 (not activated, not finished (resync))
290 - USER32: o Moved drag & drop code to seperate file
291 o Updates for OLE drag 'n drop
292 - KERNEL32: o LogException: check lockcount before changing it on entry
293 (it is not always > 0 -> previously caused hang in exception
294 handler (zombie process))
295 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
296 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
297 (todo: Odin app -> WPS)
298
299 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
300 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
301 performance
302 o DragQueryFileW fix
303 - WINMM: o Implemented minimal control change notification
304 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
305 control (probably not 100% correct)
306 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
307 (works in notepad; drag file object from WPS into notepad
308 window)
309
310 2002-05-31: Sander van Leeuwen <sandervl@innotek.de>
311 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
312 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
313 (with LLMHF_INJECTED flag set)
314
315 2002-05-31: Platon Fomichev <platon@innotek.de>
316 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
317
318 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
319 - WINMM: o Mixer fixes
320
321 2002-05-30: Platon Fomichev <platon@innotek.de>
322 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
323 (seems to be done in windows)
324
325 2002-05-29: Sander van Leeuwen <sandervl@innotek.de>
326 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
327 (fixes AbiWord keyboard input)
328 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
329 o mixerGetLineInfoW fix
330 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
331 wrt cx parameter (when set to zero)
332 (fixes properties dialog of sndvol32.exe (windows mixer app))
333 o Updated status control to latest Wine & applied two
334 bugfixes (already sent to wine-patches)
335
336 2002-05-29: Platon Fomichev <platon@innotek.de>
337 - USER32: o GetAsyncKeyState fix for VK_MENU
338 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
339 (invalidate control to prevent leftovers of size grip)
340
341 2002-05-28: Sander van Leeuwen <sandervl@innotek.de>
342 - REGSVR32: o Fixed startup
343 - WINMM: o Completely implemented mixerSetControlDetails
344 o Mixer updates
345 o Support added for master volume (ioctl90 mode)
346 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
347 o Wave recording now works
348
349 2002-05-28: Platon Fomichev <platon@innotek.de>
350 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
351 - KERNEL32: o Debugger updates
352
353 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
354 - WINMM: o Completely implemented mixerGetControlDetailsA/W
355 o Mixer updates
356 - TESTAPP\MIXER:
357 o Test application for mixer functions
358
359 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
360 - WINMM: o Fix for soundcards without ioctl90 mixer support
361 o Many mixer updates
362
363 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
364 - WINMM: o More mixer updates (not yet finished)
365
366 2002-05-23: Yuri Dario <mc6530@mclink.it>
367 - USER32: o Don't beep when unable to find menu item when alt key pressed
368
369 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
370 - WINMM: o Mixer updates (not yet finished)
371
372 2002-05-23: Platon Fomichev <platon@innotek.de>
373 - USER32: o Keyboard fixes for right alt & right shift
374
375 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
376 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
377 (fixes RealPlayer (PostThreadMessage))
378 - WINMM: o Added debug wrappers
379 o Started with mixer api rewrite
380
381 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
382 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
383
384 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
385 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
386 since a dll that depends on dlls with an exitlist handler
387 doesn't get properly unloaded (initterm not called for unload
388 nor for a 2nd load)
389
390 2002-05-20: Dmitry Froloff <froloff@os2.ru>
391 - KERNEL32: o Removed 64 MB memory mapped file limit
392 o Fix for opening memory mapped file with size larger than
393 the file size
394
395 2002-05-17: Platon Fomichev <platon@innotek.de>
396 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
397 if window is not visible (fixes endless loop in
398 property sheet when switching page with keyboard)
399
400 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
401 - OLEAUT32: o Resync with latest Wine
402 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
403 (IOCTL_CDROM_CURRENT_POSITION only)
404 o IOCTL_CDROM_READ_TOC fix
405
406 2002-05-16: knut st. osmundsen <bird@anduin.net>
407 - MAKE: o Merged in latest changes.
408 o Create NewConfigure.cmd for this environment.
409 Try NewConfigure.cmd -? first.
410 (Do 'nmake needed' before calling this. (stupid!))
411 o Please note that this is still not 100% configured for
412 Odin32 yet. But eventually it will replace the existing
413 make system.
414
415 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
416 - NTDLL: o Partial resync with Wine
417 - KERNEL32: o Export some functions for NTDLL
418 o Fixed creation of logfile for executables on readonly volumes
419 o RegQueryInfoKeyW fix
420 o TLS fix for pe2lx images
421 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
422 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
423 SystemParametersInfoA parameters
424 - OLE32: o Resync with latest Wine
425
426 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
427 - DINPUT: o Made mouse code reentrant
428 - GDI32: o Fix for EnumFontFamiliesA/W
429 - SETUPAPI: o Resync with latest Wine
430
431 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
432 - KERNEL32: o CustForce2GBFileSize function added to force
433 GetVolumeInformation to tell the app all partitions are FAT
434 (2 GB file size limitation)
435 - COMCTL32: o Merged property sheet control with latest Wine version
436
437 2002-05-14: Platon Fomichev <platon@innotek.de>
438 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
439 SWP_FOCUS(DE)ACTIVATE message.
440
441 2002-05-10: Platon Fomichev <platon@innotek.de>
442 - KERNEL32: o Parallel port updates (use resource manager to query
443 hardware configuration)
444
445 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
446 - KERNEL32: o Applications are now allowed to read physical disks or
447 mounted partitions. Write access is only allowed for
448 unmounted partitions or floppy disks.
449 o Implemented GetFileSize for disk objects; corrected
450 return value for some failures (-1)
451
452 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
453 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
454 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
455 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
456 mountpoints (e.g. C:\)
457 o Rewrote FindFirst/NextVolume to use LVM interface (if
458 availabe; else fail)
459 o Extended GetDriveType & GetVolumeInformation for volume
460 names (instead of only disk names (e.g. C:\))
461 o GetVolumeInformation change: keep file system name if
462 NTFS or FAT32
463 o Implemented unmounted volume and physical disk access
464
465 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
466 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
467 toolbar, tab, pager, nativefont, imagelist code
468 o Updated license (LGPL) for comctl32
469 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
470 in NTDLL)
471 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
472 - KERNEL32: o Implemented volume & volume mountpoint functions
473 (win2k and up)
474 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
475 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
476
477 2002-05-08: Platon Fomichev <platon@innotek.de>
478 - COMCTL32: o Merged listview control with latest Wine
479
480 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
481 - USER32: o WH_MOUSE_LL hook fixes
482
483 2002-05-07: Platon Fomichev <platon@innotek.de>
484 - USER32: o Listbox/combobox fix for MFC apps
485 o SetParent doesn't change WS_CHILD style
486 o Experimental change for getParent
487
488 2002-05-07: knut st. osmundsen <bird@anduin.net>
489 - CmdQd: o The daemon shouldn't inherit standard handles when started.
490 (Hung the daily build, since we use tee to do logging.)
491
492 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
493 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
494
495 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
496 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
497 translation array
498
Note: See TracBrowser for help on using the repository browser.