source: trunk/changelog@ 8856

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

* empty log message *

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