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