source: trunk/changelog@ 8781

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

* empty log message *

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