source: trunk/changelog@ 8859

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

* empty log message *

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