source: trunk/changelog@ 8808

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

* empty log message *

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