source: trunk/changelog@ 8928

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

* empty log message *

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