source: trunk/changelog@ 8946

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

* empty log message *

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