source: trunk/changelog@ 8805

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

* empty log message *

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