source: trunk/changelog@ 8879

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

* empty log message *

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