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