source: trunk/changelog@ 8884

Last change on this file since 8884 was 8884, checked in by achimha, 23 years ago

* empty log message *

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