1 | /* $Id: ChangeLog-2002,v 1.5 2002-08-08 17:37:04 sandervl Exp $ */
|
---|
2 |
|
---|
3 | 2002-07-31: Sander van Leeuwen <sandervl@innotek >
|
---|
4 | - WINMM: o Custom build function SetFixedWaveBufferSize added
|
---|
5 | (Call to tell winmm to expect simple fixed size buffers, so
|
---|
6 | it doesn't have to use very small DART buffers; this will
|
---|
7 | only work in very specific cases; it is not a good general
|
---|
8 | purpose solution)
|
---|
9 | - USER32: o Fixed MsgWaitForMultipleObjects implementation. Now returns
|
---|
10 | on arrival of proper window message. (previously only
|
---|
11 | for sent messages; it should also support posted msgs)
|
---|
12 |
|
---|
13 | 2002-07-30: Platon Fomichev <platon@innotek >
|
---|
14 | - KERNEL32: o Unicode update
|
---|
15 |
|
---|
16 | 2002-07-29: Sander van Leeuwen <sandervl@innotek >
|
---|
17 | - GDI32: o Cleanup fixes (call ctordtorTerm in existlist handler)
|
---|
18 |
|
---|
19 | 2002-07-28: Sander van Leeuwen <sandervl@innotek >
|
---|
20 | - KERNEL32: o Added function to disable os2cdrom.dmd aspi support
|
---|
21 | - WNASPI32: o Fixes for cdrom drive/burner recognition
|
---|
22 |
|
---|
23 | 2002-07-26: Sander van Leeuwen <sandervl@innotek >
|
---|
24 | - KERNEL32: o Keep suspend count per thread (Suspend/ResumeThread)
|
---|
25 | o Detach all dlls (LIFO order) before really unloading them; this
|
---|
26 | should take care of circular dependencies (crash while accessing
|
---|
27 | memory of a dll that has just been freed)
|
---|
28 | o Terminated & Resume suspended threads in ExitProcess to
|
---|
29 | prevent the process from getting stuck in the exitlist handler.
|
---|
30 | (OS/2 is allergic to suspended threads)
|
---|
31 | o Terminate thread when exception occurs after ExitProcess
|
---|
32 | o Protect larger part of on-demand page load handler
|
---|
33 | (DosEnterCritSec)
|
---|
34 | - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version
|
---|
35 |
|
---|
36 | 2002-07-24: Platon Fomichev <platon@innotek >
|
---|
37 | - USER32: o Pass on WM_PAINT of client window to default PM handler
|
---|
38 | if window is minimized
|
---|
39 | (fixes possible endless loop of WM_PAINT messages when
|
---|
40 | minimizing a window)
|
---|
41 |
|
---|
42 | 2002-07-23: Sander van Leeuwen <sandervl@innotek >
|
---|
43 | - KERNEL32: o Enhanced CreateWin32PeLdrExe
|
---|
44 | o Enhanced PE loader class to support files with PE image
|
---|
45 | starting at an offset != 0 (custom build)
|
---|
46 | o Fixes for memory map view with offset
|
---|
47 | - PELDR: o Modified for new CreateWin32PeLdrExe
|
---|
48 |
|
---|
49 | 2002-07-22: Sander van Leeuwen <sandervl@innotek >
|
---|
50 | - GDI32: o Check delete flag in DeleteObject. WGSS doesn't do it for us.
|
---|
51 |
|
---|
52 | 2002-07-21: Sander van Leeuwen <sandervl@innotek >
|
---|
53 | - KERNEL32: o Use shared memory in high region (> 512MB) if available
|
---|
54 | o Interface changes for shared memory allocation
|
---|
55 |
|
---|
56 | 2002-07-19: Sander van Leeuwen <sandervl@innotek >
|
---|
57 | - ODINCRT: o Dos*CriticalSection fixes
|
---|
58 |
|
---|
59 | 2002-07-16: Sander van Leeuwen <sandervl@innotek >
|
---|
60 | - KERNEL32: o Fix for loading PE images in low memory (introduced yesterday)
|
---|
61 |
|
---|
62 | 2002-07-15: Sander van Leeuwen <sandervl@innotek >
|
---|
63 | - GDI32: o Graphics handle management updates
|
---|
64 | o Mark bitmaps as RGB565 if necessary (CreateCompatibleBitmap,
|
---|
65 | CreateDIBitmap)
|
---|
66 | o DEFAULT_GUI_FONT is a system object (applications are not allowed
|
---|
67 | to delete it)
|
---|
68 | o Dynamically allocate GDI handle array to prevent waste of
|
---|
69 | shared memory (as it is a private array)
|
---|
70 | - USER32: o Updates for new handle management
|
---|
71 | o System pens & brushes can't be deleted by applications
|
---|
72 | - KERNEL32: o Rewrote algorithm for 64kb alignment in VirtualAlloc'ed memory
|
---|
73 | o Allocate fake PE headers in high memory
|
---|
74 | o Allocate win32 & code heap memory in 64kb chunks
|
---|
75 | o Allocate PE image memory at 64kb boundary
|
---|
76 | o Dynamically allocate handlemanager array to prevent waste of
|
---|
77 | shared memory (as it is a private array (for now))
|
---|
78 |
|
---|
79 | 2002-07-13: Sander van Leeuwen <sandervl@innotek >
|
---|
80 | - KERNEL32: o We do NOT want to use any win32k services with custom builds
|
---|
81 | o Disabled 64kb alignment in VirtualAlloc for now
|
---|
82 | (algorithm lead to infinite recursion on SMP kernels,
|
---|
83 | pending a better algorithm)
|
---|
84 |
|
---|
85 | 2002-07-12: Platon Fomichev <platon@innotek >
|
---|
86 | - USER32: o Close menu when RMB is pressed outside menu window
|
---|
87 |
|
---|
88 | 2002-07-12: Sander van Leeuwen <sandervl@innotek >
|
---|
89 | - WINMM: o Changed init order; do not check for MMPM2 presence if
|
---|
90 | wave audio was already disabled
|
---|
91 | o Minor cleanup for mixer code
|
---|
92 | o Touch GETAPIMAP array to force OS/2 to make it valid; some
|
---|
93 | braindead audio drivers do not check pointers.
|
---|
94 |
|
---|
95 | 2002-07-11: Platon Fomichev <platon@innotek >
|
---|
96 | - COMCTL32: o Listview: clear background for area without items (ownerdrawn)
|
---|
97 | - USER32: o OSLibWinShowTaskList must query task list window
|
---|
98 | handle from OS/2 and not assume a constant handle value
|
---|
99 |
|
---|
100 | 2002-07-08: Sander van Leeuwen <sandervl@innotek >
|
---|
101 | - USER32: o Changed SetFocus fix; only disallow focus change for minimized
|
---|
102 | and disabled windows.
|
---|
103 | o Put back focus fix from 2001-11-20
|
---|
104 |
|
---|
105 | 2002-07-06: Sander van Leeuwen <sandervl@innotek >
|
---|
106 | - KERNEL32: o Com overlapped IO changes for reference counts
|
---|
107 |
|
---|
108 | 2002-07-05: Platon Fomichev <platon@innotek >
|
---|
109 | - USER32: o SetFocus not allowed on invisible windows
|
---|
110 |
|
---|
111 | 2002-07-05: Sander van Leeuwen <sandervl@innotek >
|
---|
112 | - KERNEL32: o Dump exception log to except.log in system32 directory
|
---|
113 | o Added functions to customize logging (filename +
|
---|
114 | enable/disable
|
---|
115 | o Keep reference count for overlapped IO objects to avoid
|
---|
116 | premature destruction
|
---|
117 |
|
---|
118 | 2002-07-03: Sander van Leeuwen <sandervl@innotek >
|
---|
119 | - WS2_32: o Added WSASendDisconnect stub
|
---|
120 | - DDRAW: o MoveRect fixes (src & dest surfaces the same + overlap)
|
---|
121 | o Fill fixes for single lines (horizontal & vertical)
|
---|
122 | o Optimized 8, 16 & 32bpp Fills
|
---|
123 |
|
---|
124 | 2002-07-02: Sander van Leeuwen <sandervl@innotek >
|
---|
125 | - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC
|
---|
126 | (problem located in GDI32)
|
---|
127 |
|
---|
128 | 2002-07-01: Sander van Leeuwen <sandervl@innotek >
|
---|
129 | - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W
|
---|
130 | (Wine doesn't do this, but experiments in Windows 2000 show
|
---|
131 | different behaviour)
|
---|
132 | o Edit control: don't beep when receiving Enter (single line
|
---|
133 | control)
|
---|
134 | - DDRAW: o Color fill bugfixes:
|
---|
135 | - fill up to height, not height - 1
|
---|
136 | - check for single pixel line fills -> avoid heap corruption
|
---|
137 | o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC
|
---|
138 | o SurfReleaseDC; initialize BITMAPINFO structure properly
|
---|
139 | before calling GetDIBits + fix for 16 bpp GetDIBits
|
---|
140 | (which always returns data in RGB555 format in our case)
|
---|
141 | o Fill16on16: convert RGB555 color value to RGB565
|
---|
142 | o Mark surface as changed (ChangeUniquenessValue) after
|
---|
143 | blit & fill
|
---|
144 | - KERNEL32: o Print win32 module name when exception occurs
|
---|
145 |
|
---|
146 | 2002-06-30: Sander van Leeuwen <sandervl@innotek >
|
---|
147 | - KERNEL32: o WriteFile for standard out: convert line feed without
|
---|
148 | carriage return into CR+LF
|
---|
149 | o VirtualFree; don't allow app to decommit stack pages
|
---|
150 | (VAC runtime uses last stack page to store some internal
|
---|
151 | data; if freed pe/pec will crash during exit)
|
---|
152 |
|
---|
153 | 2002-06-28: Sander van Leeuwen <sandervl@innotek >
|
---|
154 | - USER32: o Removed focus fix from 2001-11-20; controls of child
|
---|
155 | dialogs can receive input focus (CVP wizard dialogs)
|
---|
156 | o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
|
---|
157 | flag is set (otherwise the hook will be called twice)
|
---|
158 | o Call message filter hook in IsDialogMessageA/W
|
---|
159 | - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)
|
---|
160 |
|
---|
161 | 2002-06-27: Platon Fomichev <platon@innotek >
|
---|
162 | - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently
|
---|
163 | done in windows)
|
---|
164 |
|
---|
165 | 2002-06-27: Sander van Leeuwen <sandervl@innotek >
|
---|
166 | - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
|
---|
167 | is valid. (COMDLG32_UpdateCurrentDir)
|
---|
168 | (fixes crash in file dialog when double clicking on abstract
|
---|
169 | objects like 'My Computer')
|
---|
170 |
|
---|
171 | 2002-06-26: Sander van Leeuwen <sandervl@innotek >
|
---|
172 | - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
|
---|
173 | DosDateTimeToFileTime functions;
|
---|
174 | Real problem lies in the fact that the times returned
|
---|
175 | by DosFindFirst, DosFindNext, DosQueryPathInfo &
|
---|
176 | DosQueryFileInfo are in local time; we must convert them
|
---|
177 | to file time (UTC)
|
---|
178 | o Fixed bug in OSLibGetDriveType; broke GetDriveType for
|
---|
179 | floppy drives
|
---|
180 | o Fixed CreateFile for disks
|
---|
181 | o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
|
---|
182 | fail if no disk present or when the media has been changed
|
---|
183 | o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
|
---|
184 | always succeed
|
---|
185 | o Don't fail CreateFile for disk when DosOpen fails with
|
---|
186 | a sharing violation. Apparently this is allowed in windows;
|
---|
187 | although you can't do much with the handle. (limited to
|
---|
188 | IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
|
---|
189 |
|
---|
190 | 2002-06-26: knut st. osmundsen <bird@anduin >
|
---|
191 | - KERNEL32\testcase:
|
---|
192 | o Added testcase for Test of SetConsoleCtrlHandler() and
|
---|
193 | GenerateConsoleCtrlEvent().
|
---|
194 | Note. The last part of it is known to fail since the
|
---|
195 | functions aren't 100% implemented yet.
|
---|
196 | o Added mini testcase for MultiByteToWideChar().
|
---|
197 | o Use the testsuite tools for unit testcases too.
|
---|
198 | - KERNEL32: o Partial implementation of Console Ctrl Handlers.
|
---|
199 | (Ctrl-Break and Ctrl-C)
|
---|
200 | o GetFileType on std files doesn't always return TYPE_CHAR.
|
---|
201 | Ask what kind of filehandle we have.
|
---|
202 | (Solves 'press key' problem with "wcc386.exe > file".)
|
---|
203 | o Enable writing to STDERR. (This might have brought into
|
---|
204 | light a redirection problem.)
|
---|
205 |
|
---|
206 | 2002-06-25: Sander van Leeuwen <sandervl@innotek >
|
---|
207 | - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
|
---|
208 | key data; registry.dll returns the wrong value (too big;
|
---|
209 | appears size of internal storage)
|
---|
210 | o FileTimeToSystemTime fix (no problems with WGSS implementation)
|
---|
211 | o Removed bad unicode change
|
---|
212 |
|
---|
213 | 2002-06-25: knut st. osmundsen <bird@anduin >
|
---|
214 | - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
|
---|
215 | is bad.
|
---|
216 | - SHELL32: o Bad linked list walking. (accessed node after free)
|
---|
217 | - USER32: o Allocate space the two missing RGB2 entries.
|
---|
218 | o Use "%.*s" and "%.*ls" when we have a string with a length.
|
---|
219 | (Crashing in logging is awfull. Creates zombies!)
|
---|
220 | - ODINCRT: o Reserve low 32MB of address space before initializing
|
---|
221 | the CRT IF we compile with the debug heap (kLib).
|
---|
222 |
|
---|
223 | 2002-06-24: knut st. osmundsen <bird@anduin >
|
---|
224 | - Testsuite:
|
---|
225 | o Most of the watcom case done and working.
|
---|
226 | - Make: o Corrected LIB paths of the win32 watcom setup.
|
---|
227 |
|
---|
228 | 2002-06-21: knut st. osmundsen <bird@anduin >
|
---|
229 | - KERNEL32: o LCMapStringW fix
|
---|
230 |
|
---|
231 | 2002-06-20: Platon Fomichev <platon@innotek >
|
---|
232 | - COMCTL32: o Don't erase background for ownerdrawn listview controls
|
---|
233 | (LISTVIEW_RefreshReport)
|
---|
234 |
|
---|
235 | 2002-06-20: Sander van Leeuwen <sandervl@innotek >
|
---|
236 | - OLE32: o Drag 'n drop fix
|
---|
237 | - USER32: o Drag 'n drop fix
|
---|
238 | o Enabled drag 'n drop again
|
---|
239 | o Added DisableDragDrop
|
---|
240 |
|
---|
241 | 2002-06-20: knut st. osmundsen <bird@anduin >
|
---|
242 | - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
|
---|
243 | - Tools: o Added ExecTestcase.cmd for executing a testing and do
|
---|
244 | result logging.
|
---|
245 | - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
|
---|
246 | - Testsuite:
|
---|
247 | o Use ExecTestcase.cmd for executing the testcases.
|
---|
248 | Logging & execute all testcases nomatter return values.
|
---|
249 | o Added watcomc.mak which is pretty simple watcom tests.
|
---|
250 | (currently noone of them really work 100%.)
|
---|
251 | o TODO: Make a timeout executer which kills the children when
|
---|
252 | they've been executing too long. This is required in order to
|
---|
253 | run the testsuite without human interaction.
|
---|
254 |
|
---|
255 | 2002-06-19: Sander van Leeuwen <sandervl@innotek >
|
---|
256 | - OLE32: o Drag 'n drop fixes
|
---|
257 |
|
---|
258 | 2002-06-18: Sander van Leeuwen <sandervl@innotek >
|
---|
259 | - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
|
---|
260 | mouse state is out of sync and update if necessary
|
---|
261 |
|
---|
262 | 2002-06-18: knut st. osmundsen <bird@anduin >
|
---|
263 | - Win32k: o Fixed compiler warning which caused the M$ compiler
|
---|
264 | to choke on some systems.
|
---|
265 | - Testsuite:
|
---|
266 | o A collection of testcases running real win32 apps.
|
---|
267 | Not finished, just an idea currently, intended for
|
---|
268 | testing odin releases and changes.
|
---|
269 | Currently limiting ourselfs to CUI progs.
|
---|
270 | o A simple DoxyGen testcase is checked in.
|
---|
271 | o Read the micro howto in testsuite/Makefile.
|
---|
272 | - Make: o Synced with outside world. (NMAKE5 changes mostly.)
|
---|
273 | o Added support for TARGET_MODE = TESTCASE.
|
---|
274 | o Added separate tools file for the testsuite.
|
---|
275 |
|
---|
276 | 2002-06-17: Sander van Leeuwen <sandervl@innotek >
|
---|
277 | - USER32: o Disabled drag 'n drop temporarily (not yet stable)
|
---|
278 |
|
---|
279 | 2002-06-16: Sander van Leeuwen <sandervl@innotek >
|
---|
280 | - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
|
---|
281 | o Removed: LoadLibraryExA: expand library filename
|
---|
282 | (doesn't happen in Windows)
|
---|
283 | - INSTALL: o Create object for Odin User's Manual + fixed object
|
---|
284 | creation for OdinBug Manual
|
---|
285 | o Include OdinBug.HLP & OdinUser.INF
|
---|
286 | - SHELL32: o Fixed desktop object creation during win32 app install
|
---|
287 |
|
---|
288 | 2002-06-15: Sander van Leeuwen <sandervl@innotek >
|
---|
289 | - SETUPAPI: o Wine resync + added debug wrappers
|
---|
290 | - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
|
---|
291 | o Check for NULL parameters in GetFullPathNameW
|
---|
292 | o hmfile.cpp: ParsePath fix; check boundary
|
---|
293 | o LoadLibraryExA: expand library filename; might contain
|
---|
294 | environment variables
|
---|
295 | o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
|
---|
296 | registry.dll doesn't like this type for some reason
|
---|
297 | - USER32: o Do proper filtering for PeekMessage
|
---|
298 | - NTDLL: o Forward heap functions to kernel32
|
---|
299 | - QUARTZ: o Removed old code (stub dll now)
|
---|
300 | - AVIFIL32: o Resync with Wine
|
---|
301 | - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
|
---|
302 |
|
---|
303 | 2002-06-13: Sander van Leeuwen <sandervl@innotek >
|
---|
304 | - USER32: o SetCustomWndHandleSemName added to override shared semaphore
|
---|
305 | name used to synchronize global window handle array access
|
---|
306 | (to avoid name clash with Odin)
|
---|
307 | - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
|
---|
308 | name used to synchronize global memory map list access
|
---|
309 | (to avoid name clash with Odin)
|
---|
310 |
|
---|
311 | 2002-06-13: Platon Fomichev <platon@innotek >
|
---|
312 | - USER32: o Only minimize or maximize window if appropriate style flag set
|
---|
313 |
|
---|
314 | 2002-06-12: Sander van Leeuwen <sandervl@innotek >
|
---|
315 | - KERNEL32: o If bytes present in COM device buffer, read them directly;
|
---|
316 | even for overlapped IO calls.
|
---|
317 |
|
---|
318 | 2002-06-11: Platon Fomichev <platon@innotek >
|
---|
319 | - SHELL32: o Ignore name changes for 'My Computer' and other non-file
|
---|
320 | objects (file dialogs)
|
---|
321 |
|
---|
322 | 2002-06-11: Sander van Leeuwen <sandervl@innotek >
|
---|
323 | - OLEAUT32, SHELL32:
|
---|
324 | o Some Wine updates
|
---|
325 | - KERNEL32: o Overlapped IO bugfixes
|
---|
326 | o Thread TEB linking bugfix
|
---|
327 | o Setup TEB structure before creating thread. Otherwise it's
|
---|
328 | created too late and thread functions called by the app
|
---|
329 | right after thread creation will fail.(e.g. SetThreadPriority)
|
---|
330 |
|
---|
331 | 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon >
|
---|
332 | - TOOLS\ODINBUG:
|
---|
333 | o Added VX-REXX sources for OdinBug
|
---|
334 | - DOC: o OdinBug.HLP update
|
---|
335 | - BIN: o OdinBug.exe update
|
---|
336 |
|
---|
337 | 2002-06-10: Sander van Leeuwen <sandervl@xs4all >
|
---|
338 | - OLE32: o Fixed bug in StgStreamImpl_Seek
|
---|
339 | - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
|
---|
340 | (fixes crash in Java 1.4 install)
|
---|
341 | - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
|
---|
342 | overlapped IO
|
---|
343 |
|
---|
344 | 2002-06-09: knut st. osmundsen <bird@anduin >
|
---|
345 | - Makefiles:
|
---|
346 | o Exclude dummy.c from the dependencies.
|
---|
347 |
|
---|
348 | 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon >
|
---|
349 | - KERNEL32: o Corrections for Austrian NLS file
|
---|
350 |
|
---|
351 | 2002-06-09: Sander van Leeuwen <sandervl@xs4all >
|
---|
352 | - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
|
---|
353 | communication
|
---|
354 | (fixes OpenOffice 1.0 crash during install (at 76%))
|
---|
355 | o Skip window handle 0x68000000 (otherwise more difficult
|
---|
356 | to compare logs with old builds)
|
---|
357 | o Logging changes for comparing source file names
|
---|
358 | o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
|
---|
359 | (fixes Java 1.4 installation (first dialog))
|
---|
360 | - COMDLG32: o GetFileDialog95W fix (check if template name is string or
|
---|
361 | numeric id)
|
---|
362 | (fixes OpenOffice 1.0 file open dialog crash)
|
---|
363 | - WININET: o Fixed shlwapi imports
|
---|
364 | - OLE32: o Resync with latest Wine
|
---|
365 | - OLEAUT32: o Resync with latest Wine
|
---|
366 |
|
---|
367 | 2002-06-08: Sander van Leeuwen <sandervl@xs4all >
|
---|
368 | - SHELL32: o Moved resource files to subdir
|
---|
369 | - COMDLG32: o Compile fix + moved resource files to subdir
|
---|
370 | - KERNEL32: o Export OSLibDosDevIOCtl
|
---|
371 | - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
|
---|
372 | (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
|
---|
373 | package from May 2001 (or newer) or recent JJSCDROM)
|
---|
374 | - DDRAW: o Fixed clipping bug with non-frame windows
|
---|
375 | o Print FOURCCs supported by Dive
|
---|
376 |
|
---|
377 | 2002-06-08: knut *st. osmundsen <bird@anduin >
|
---|
378 | - TOOLS\WRC:o Compile fix
|
---|
379 |
|
---|
380 | 2002-06-07: Sander van Leeuwen <sandervl@innotek >
|
---|
381 | - SHLWAPI: o Resync with latest Wine & added LGPL license
|
---|
382 | - SHELL32: o Some updates for upcoming resync
|
---|
383 |
|
---|
384 | 2002-06-06: knut st. osmundsen <bird@anduin >
|
---|
385 | - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
|
---|
386 |
|
---|
387 | 2002-06-06: Mark Paulus <mark.paulus@wcom >
|
---|
388 | - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
|
---|
389 | opening an existing file
|
---|
390 |
|
---|
391 | 2002-06-06: Sander van Leeuwen <sandervl@innotek >
|
---|
392 | - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
|
---|
393 |
|
---|
394 | 2002-06-06: Platon Fomichev <platon@innotek >
|
---|
395 | - SHELL32: o Always expand root when initializing treeview
|
---|
396 | o Do not sort tree in TVN_ITEMEXPANDINGA
|
---|
397 |
|
---|
398 | 2002-06-05: Sander van Leeuwen <sandervl@innotek >
|
---|
399 | - WINMM: o Put back original DART buffer size selection code
|
---|
400 | (new one messes up e.g. RealPlayer)
|
---|
401 | o Postpone recording when waveInStart called without
|
---|
402 | any buffers in the queue. Start in during next
|
---|
403 | waveInAddBuffer call.
|
---|
404 | o Fixed DART waveout resume
|
---|
405 |
|
---|
406 | 2002-06-04: Sander van Leeuwen <sandervl@innotek >
|
---|
407 | - USER32: o Fix for AltGr key combinations
|
---|
408 | - WINMM: o Updates for wave playback
|
---|
409 |
|
---|
410 | 2002-06-03: Sander van Leeuwen <sandervl@innotek >
|
---|
411 | - USER32, OLE32:
|
---|
412 | o Drag and drop fixes
|
---|
413 | - BIN\ODINBUG:
|
---|
414 | o Update by Herwig Bauernfeind (0.5.6a)
|
---|
415 | - DOC\MANUAL:
|
---|
416 | o Users manual sources by Herwig Bauernfeind
|
---|
417 | - DOC: o Added odinuser.inf by Herwig Bauernfeind
|
---|
418 |
|
---|
419 | 2002-06-02: Sander van Leeuwen <sandervl@innotek >
|
---|
420 | - USER32\CONTROLS:
|
---|
421 | o New dll for user32 controls (latest Wine)
|
---|
422 | (not activated, not finished (resync))
|
---|
423 | - USER32: o Moved drag & drop code to seperate file
|
---|
424 | o Updates for OLE drag 'n drop
|
---|
425 | - KERNEL32: o LogException: check lockcount before changing it on entry
|
---|
426 | (it is not always > 0 -> previously caused hang in exception
|
---|
427 | handler (zombie process))
|
---|
428 | - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
|
---|
429 | - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
|
---|
430 | (todo: Odin app -> WPS)
|
---|
431 |
|
---|
432 | 2002-06-01: Sander van Leeuwen <sandervl@innotek >
|
---|
433 | - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
|
---|
434 | performance
|
---|
435 | o DragQueryFileW fix
|
---|
436 | - WINMM: o Implemented minimal control change notification
|
---|
437 | - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
|
---|
438 | control (probably not 100% correct)
|
---|
439 | - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
|
---|
440 | (works in notepad; drag file object from WPS into notepad
|
---|
441 | window)
|
---|
442 |
|
---|
443 | 2002-05-31: Sander van Leeuwen <sandervl@innotek >
|
---|
444 | - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
|
---|
445 | - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
|
---|
446 | (with LLMHF_INJECTED flag set)
|
---|
447 |
|
---|
448 | 2002-05-31: Platon Fomichev <platon@innotek >
|
---|
449 | - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
|
---|
450 |
|
---|
451 | 2002-05-30: Sander van Leeuwen <sandervl@innotek >
|
---|
452 | - WINMM: o Mixer fixes
|
---|
453 |
|
---|
454 | 2002-05-30: Platon Fomichev <platon@innotek >
|
---|
455 | - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
|
---|
456 | (seems to be done in windows)
|
---|
457 |
|
---|
458 | 2002-05-29: Sander van Leeuwen <sandervl@innotek >
|
---|
459 | - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
|
---|
460 | (fixes AbiWord keyboard input)
|
---|
461 | - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
|
---|
462 | o mixerGetLineInfoW fix
|
---|
463 | - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
|
---|
464 | wrt cx parameter (when set to zero)
|
---|
465 | (fixes properties dialog of sndvol32.exe (windows mixer app))
|
---|
466 | o Updated status control to latest Wine & applied two
|
---|
467 | bugfixes (already sent to wine-patches)
|
---|
468 |
|
---|
469 | 2002-05-29: Platon Fomichev <platon@innotek >
|
---|
470 | - USER32: o GetAsyncKeyState fix for VK_MENU
|
---|
471 | - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
|
---|
472 | (invalidate control to prevent leftovers of size grip)
|
---|
473 |
|
---|
474 | 2002-05-28: Sander van Leeuwen <sandervl@innotek >
|
---|
475 | - REGSVR32: o Fixed startup
|
---|
476 | - WINMM: o Completely implemented mixerSetControlDetails
|
---|
477 | o Mixer updates
|
---|
478 | o Support added for master volume (ioctl90 mode)
|
---|
479 | o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
|
---|
480 | o Wave recording now works
|
---|
481 |
|
---|
482 | 2002-05-28: Platon Fomichev <platon@innotek >
|
---|
483 | - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
|
---|
484 | - KERNEL32: o Debugger updates
|
---|
485 |
|
---|
486 | 2002-05-27: Sander van Leeuwen <sandervl@innotek >
|
---|
487 | - WINMM: o Completely implemented mixerGetControlDetailsA/W
|
---|
488 | o Mixer updates
|
---|
489 | - TESTAPP\MIXER:
|
---|
490 | o Test application for mixer functions
|
---|
491 |
|
---|
492 | 2002-05-25: Sander van Leeuwen <sandervl@innotek >
|
---|
493 | - WINMM: o Fix for soundcards without ioctl90 mixer support
|
---|
494 | o Many mixer updates
|
---|
495 |
|
---|
496 | 2002-05-24: Sander van Leeuwen <sandervl@innotek >
|
---|
497 | - WINMM: o More mixer updates (not yet finished)
|
---|
498 |
|
---|
499 | 2002-05-23: Yuri Dario <mc6530@mclink >
|
---|
500 | - USER32: o Don't beep when unable to find menu item when alt key pressed
|
---|
501 |
|
---|
502 | 2002-05-23: Sander van Leeuwen <sandervl@innotek >
|
---|
503 | - WINMM: o Mixer updates (not yet finished)
|
---|
504 |
|
---|
505 | 2002-05-23: Platon Fomichev <platon@innotek >
|
---|
506 | - USER32: o Keyboard fixes for right alt & right shift
|
---|
507 |
|
---|
508 | 2002-05-22: Sander van Leeuwen <sandervl@innotek >
|
---|
509 | - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
|
---|
510 | (fixes RealPlayer (PostThreadMessage))
|
---|
511 | - WINMM: o Added debug wrappers
|
---|
512 | o Started with mixer api rewrite
|
---|
513 |
|
---|
514 | 2002-05-21: Sander van Leeuwen <sandervl@innotek >
|
---|
515 | - KERNEL32: o Round stack top & bottom (TIB) to page boundary
|
---|
516 |
|
---|
517 | 2002-05-20: Sander van Leeuwen <sandervl@innotek >
|
---|
518 | - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
|
---|
519 | since a dll that depends on dlls with an exitlist handler
|
---|
520 | doesn't get properly unloaded (initterm not called for unload
|
---|
521 | nor for a 2nd load)
|
---|
522 |
|
---|
523 | 2002-05-20: Dmitry Froloff <froloff@os2 >
|
---|
524 | - KERNEL32: o Removed 64 MB memory mapped file limit
|
---|
525 | o Fix for opening memory mapped file with size larger than
|
---|
526 | the file size
|
---|
527 |
|
---|
528 | 2002-05-17: Platon Fomichev <platon@innotek >
|
---|
529 | - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
|
---|
530 | if window is not visible (fixes endless loop in
|
---|
531 | property sheet when switching page with keyboard)
|
---|
532 |
|
---|
533 | 2002-05-17: Sander van Leeuwen <sandervl@innotek >
|
---|
534 | - OLEAUT32: o Resync with latest Wine
|
---|
535 | - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
|
---|
536 | (IOCTL_CDROM_CURRENT_POSITION only)
|
---|
537 | o IOCTL_CDROM_READ_TOC fix
|
---|
538 |
|
---|
539 | 2002-05-16: knut st. osmundsen <bird@anduin >
|
---|
540 | - MAKE: o Merged in latest changes.
|
---|
541 | o Create NewConfigure.cmd for this environment.
|
---|
542 | Try NewConfigure.cmd -? first.
|
---|
543 | (Do 'nmake needed' before calling this. (stupid!))
|
---|
544 | o Please note that this is still not 100% configured for
|
---|
545 | Odin32 yet. But eventually it will replace the existing
|
---|
546 | make system.
|
---|
547 |
|
---|
548 | 2002-05-16: Sander van Leeuwen <sandervl@innotek >
|
---|
549 | - NTDLL: o Partial resync with Wine
|
---|
550 | - KERNEL32: o Export some functions for NTDLL
|
---|
551 | o Fixed creation of logfile for executables on readonly volumes
|
---|
552 | o RegQueryInfoKeyW fix
|
---|
553 | o TLS fix for pe2lx images
|
---|
554 | - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
|
---|
555 | SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
|
---|
556 | SystemParametersInfoA parameters
|
---|
557 | - OLE32: o Resync with latest Wine
|
---|
558 |
|
---|
559 | 2002-05-15: Sander van Leeuwen <sandervl@innotek >
|
---|
560 | - DINPUT: o Made mouse code reentrant
|
---|
561 | - GDI32: o Fix for EnumFontFamiliesA/W
|
---|
562 | - SETUPAPI: o Resync with latest Wine
|
---|
563 |
|
---|
564 | 2002-05-14: Sander van Leeuwen <sandervl@innotek >
|
---|
565 | - KERNEL32: o CustForce2GBFileSize function added to force
|
---|
566 | GetVolumeInformation to tell the app all partitions are FAT
|
---|
567 | (2 GB file size limitation)
|
---|
568 | - COMCTL32: o Merged property sheet control with latest Wine version
|
---|
569 |
|
---|
570 | 2002-05-14: Platon Fomichev <platon@innotek >
|
---|
571 | - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
|
---|
572 | SWP_FOCUS(DE)ACTIVATE message.
|
---|
573 |
|
---|
574 | 2002-05-10: Platon Fomichev <platon@innotek >
|
---|
575 | - KERNEL32: o Parallel port updates (use resource manager to query
|
---|
576 | hardware configuration)
|
---|
577 |
|
---|
578 | 2002-05-10: Sander van Leeuwen <sandervl@innotek >
|
---|
579 | - KERNEL32: o Applications are now allowed to read physical disks or
|
---|
580 | mounted partitions. Write access is only allowed for
|
---|
581 | unmounted partitions or floppy disks.
|
---|
582 | o Implemented GetFileSize for disk objects; corrected
|
---|
583 | return value for some failures (-1)
|
---|
584 |
|
---|
585 | 2002-05-09: Sander van Leeuwen <sandervl@innotek >
|
---|
586 | - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
|
---|
587 | IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
|
---|
588 | o Implemented GetVolumeNameForVolumeMountPointA/W for disk
|
---|
589 | mountpoints (e.g. C:\)
|
---|
590 | o Rewrote FindFirst/NextVolume to use LVM interface (if
|
---|
591 | availabe; else fail)
|
---|
592 | o Extended GetDriveType & GetVolumeInformation for volume
|
---|
593 | names (instead of only disk names (e.g. C:\))
|
---|
594 | o GetVolumeInformation change: keep file system name if
|
---|
595 | NTFS or FAT32
|
---|
596 | o Implemented unmounted volume and physical disk access
|
---|
597 |
|
---|
598 | 2002-05-08: Sander van Leeuwen <sandervl@innotek >
|
---|
599 | - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
|
---|
600 | toolbar, tab, pager, nativefont, imagelist code
|
---|
601 | o Updated license (LGPL) for comctl32
|
---|
602 | - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
|
---|
603 | in NTDLL)
|
---|
604 | - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
|
---|
605 | - KERNEL32: o Implemented volume & volume mountpoint functions
|
---|
606 | (win2k and up)
|
---|
607 | o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
|
---|
608 | IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
|
---|
609 |
|
---|
610 | 2002-05-08: Platon Fomichev <platon@innotek >
|
---|
611 | - COMCTL32: o Merged listview control with latest Wine
|
---|
612 |
|
---|
613 | 2002-05-07: Sander van Leeuwen <sandervl@innotek >
|
---|
614 | - USER32: o WH_MOUSE_LL hook fixes
|
---|
615 |
|
---|
616 | 2002-05-07: Platon Fomichev <platon@innotek >
|
---|
617 | - USER32: o Listbox/combobox fix for MFC apps
|
---|
618 | o SetParent doesn't change WS_CHILD style
|
---|
619 | o Experimental change for getParent
|
---|
620 |
|
---|
621 | 2002-05-07: knut st. osmundsen <bird@anduin >
|
---|
622 | - CmdQd: o The daemon shouldn't inherit standard handles when started.
|
---|
623 | (Hung the daily build, since we use tee to do logging.)
|
---|
624 |
|
---|
625 | 2002-05-06: Sander van Leeuwen <sandervl@innotek >
|
---|
626 | - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
|
---|
627 |
|
---|
628 | 2002-05-01: Sander van Leeuwen <sandervl@innotek >
|
---|
629 | - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
|
---|
630 | translation array
|
---|
631 |
|
---|
632 | 2002-04-30: Sander van Leeuwen <sandervl@innotek.de>
|
---|
633 | - GDI32: o Font renaming support added to EnumFontFamiliesA/W
|
---|
634 | - USER32: o Implemented WH_MOUSE_LL hook
|
---|
635 | o Removed DInput hack for keyboard & mouse message translation
|
---|
636 | - DINPUT: o Resync with last X11 licensed Wine (TODO: LGPL)
|
---|
637 |
|
---|
638 | 2002-04-30: knut st. osmundsen <bird@anduin.net>
|
---|
639 | - KERNEL32: o Changes for debug heap (makefile + exception handler)
|
---|
640 |
|
---|
641 | 2002-04-30: Platon Fomichev <platon@innotek.de>
|
---|
642 | - KERNEL32: o FileTimeToSystemTime, DosDateTimeToFileTime &
|
---|
643 | SystemTimeToFileTime bugfixes
|
---|
644 | - USER32: o Focus fix when minimizing window
|
---|
645 |
|
---|
646 | 2002-04-29: Sander van Leeuwen <sandervl@innotek.de>
|
---|
647 | - KERNEL32: o Export RegisterCustomDriver
|
---|
648 |
|
---|
649 | 2002-04-29: Patrick Haller <patrick.haller@innotek.de>
|
---|
650 | - OLEAUT32: o Clean up hash object during dll unload
|
---|
651 | - KERNEL32: o Fixed memory leaks in handlename class, Win32ImageBase::isPEImage
|
---|
652 | and DestroyTIB
|
---|
653 | o fixed unicode conversion for APIs that allow
|
---|
654 | NULL strings as input parameter (SearchPathW,
|
---|
655 | Registry APIs) not to set last error to EROROR_INVALID_HANDLE
|
---|
656 | o wprocess.cpp:
|
---|
657 | - set ODIN32.DEBUG_CHILD=ICSDEBUG.EXE will cause CreateProcess
|
---|
658 | to start PE-clients inside a new debugger instance
|
---|
659 | - GetModuleFileName fixes (don't count zero termination)
|
---|
660 | o don't set last error in HeapFree()
|
---|
661 | - COMCTL32: o Draglist control bugfix (crash)
|
---|
662 |
|
---|
663 | 2002-04-28: knut st. osmundsen <bird@anduin.net>
|
---|
664 | - Configure.cmd, Odincrt:
|
---|
665 | o Added option --with-klib to configure.cmd to link
|
---|
666 | odincrt with the electric debug heap of kLib.
|
---|
667 | Concider this experimental!
|
---|
668 |
|
---|
669 | 2002-04-28: Platon Fomichev <platon@innotek.de>
|
---|
670 | - USER32: o Focus fix when minimizing window
|
---|
671 | - IPHLPAPI: o Bugfix
|
---|
672 |
|
---|
673 | 2002-04-24: Platon Fomichev <platon@innotek.de>
|
---|
674 | - USER32: o Don't activate window when it's minimized (ShowWindow)
|
---|
675 | o Deactivate window & move to bottom of z-order when it's
|
---|
676 | minimized
|
---|
677 | o Listbox fix; rollup dropdown if mouse button pressed outside
|
---|
678 | control
|
---|
679 |
|
---|
680 | 2002-04-17: Platon Fomichev <platon@innotek.de>
|
---|
681 | - COMDLG32: o If application specifies full path in file dialog structure
|
---|
682 | (and initial dir string is NULL), then change to the directory.
|
---|
683 |
|
---|
684 | 2002-04-17: knut st. osmundsen <bird@anduin.net>
|
---|
685 | - Makefiles:
|
---|
686 | o Use the VAC40 profiler for profiling in PROFILE=1, DEBUG=
|
---|
687 | mode. See /tools/profilerfix/Readme.1st for details.
|
---|
688 | - ProfilerFix:
|
---|
689 | o Added readme.1st for VAC308, vac365 profiling using the
|
---|
690 | VAC4 profiler features.
|
---|
691 |
|
---|
692 | 2002-04-14: knut st. osmundsen <bird@anduin.net>
|
---|
693 | - KERNEL32: o Cache CDROM drive letters in OSLibGetDriveType.
|
---|
694 | o Added testcases to makescripts in the testcase subdir.
|
---|
695 | 'nmake build testcase' from that dir will build test
|
---|
696 | program(s) and run testcases.
|
---|
697 |
|
---|
698 | 2002-04-13: knut st. osmundsen <bird@anduin.net>
|
---|
699 | - Windefs.h:
|
---|
700 | o _MAX_PATH, _MAX_DIR, _MAX_EXT crashes withc Watcom C.
|
---|
701 | - KERNEL32: o GetDriveType optimizations.
|
---|
702 | Made it just as strict as WinXP. Hope this won't
|
---|
703 | blow up any thing. (A little bit worried about a call in
|
---|
704 | shell32/folders.c and mci_open.)
|
---|
705 | o Corrected a call to GetDirveTypeA in hmdisk.cpp. (paranoia)
|
---|
706 | o Made (stupid) test program which is placed in the testcase
|
---|
707 | subdir. This is compilable for both OS/2 and NT.
|
---|
708 | o Hot fix for 0 CDROM issue. (To be removed)
|
---|
709 |
|
---|
710 | - USER32: o Corrected a call to GetDriveTypeA. (missing ':')
|
---|
711 |
|
---|
712 | 2002-04-11: knut st. osmundsen <bird@anduin.net>
|
---|
713 | - Makefiles:
|
---|
714 | o Output linenumbers to the map file when linking.
|
---|
715 | o Attempt at VAC308 profiling (icsperf.exe).
|
---|
716 | This is only enabled if you set PROFILE without DEBUG.
|
---|
717 | - ProfileFix:
|
---|
718 | o Hack to prevent the app which is profiled to crash
|
---|
719 | on Warp 4.5+.
|
---|
720 | - Install: o Changed it to work with 0.9.18+. Not that this fix
|
---|
721 | requires a bugfix over the 0.9.18 warping release.
|
---|
722 | - DailyBuild:
|
---|
723 | o Updated scripts so I can run the daily build on my
|
---|
724 | workstaion at home.
|
---|
725 |
|
---|
726 | 2002-04-10: knut st. osmundsen <bird@anduin.net>
|
---|
727 | - UXTHEME: o Stubbed the DLL as some apps keeps trying to load it.
|
---|
728 | - src/makefile:
|
---|
729 | o Update the CUSTOMBUILD module list.
|
---|
730 |
|
---|
731 | 2002-04-07: Sander van Leeuwen <sandervl@innotek.de>
|
---|
732 | - ODINCRT: o Wrote OS/2 version of CriticalSection apis (including
|
---|
733 | support for shared critical sections; which is currently
|
---|
734 | not possible with the Win32 version due to missing
|
---|
735 | support for global object handles in kernel32)
|
---|
736 | - KERNEL32: o Rewrote VMutex class to use odincrt critical sections
|
---|
737 | o Rewrote global vmutex usage (mmap)
|
---|
738 | - USER32: o Rewrote global vmutex usage (window handles)
|
---|
739 | o EnumWindows made safer
|
---|
740 | o Fixed bug in desktop window constructor (double window
|
---|
741 | handle allocation)
|
---|
742 | - WINMM: o Rewrote vmutex usage (wave in/out classes)
|
---|
743 | - GDI32: o Rewrote vmutex usage (object handle functions)
|
---|
744 | - INCLUDE: o Debug wrapper fixes (missing 6th argument)
|
---|
745 |
|
---|
746 | 2002-04-06: Sander van Leeuwen <sandervl@innotek.de>
|
---|
747 | - KERNEL32: o Do not test for write capability with CDROM drives
|
---|
748 | (IOCTL_DISK_IS_WRITABLE)
|
---|
749 |
|
---|
750 | 2002-03-31: knut st. osmundsen <bird@anduin.net>
|
---|
751 | - Include: o Removed blank lines from odinbuild.h and wrapped
|
---|
752 | the prototype in ifdefs so WIN32API doesn't need
|
---|
753 | to be defined to include the file.
|
---|
754 |
|
---|
755 | 2002-03-28: Sander van Leeuwen <sandervl@innotek.de>
|
---|
756 | - USER32: o Customization changes
|
---|
757 | - WNASPI32: o Fix for disabling aspi by default in custom build
|
---|
758 |
|
---|
759 | 2002-03-28: Platon Fomichev <platon@innotek.de>
|
---|
760 | - USER32: o Gracefully handle WM_QUIT message sent by window list:
|
---|
761 | do not return from GetMessage with FALSE, but send
|
---|
762 | WM_CLOSE to window. WM_QUIT sent by PostQuitMessage
|
---|
763 | will be handled properly.
|
---|
764 |
|
---|
765 | 2002-03-24: Sander van Leeuwen <sandervl@innotek.de>
|
---|
766 | - KERNEL32: o OpenFileMapping fix
|
---|
767 | (Notes replication seems to work now)
|
---|
768 | o MapViewOfFile fix; all named file mappings can be shared
|
---|
769 | (files & memory only)
|
---|
770 |
|
---|
771 | 2002-03-22: Sander van Leeuwen <sandervl@innotek.de>
|
---|
772 | - KERNEL32: o Removed FindResource hooks
|
---|
773 | - USER32: o Added LoadImageW hook for custom builds
|
---|
774 | - DDRAW: o Do not use XFree driver unless fullscreen mode is enabled
|
---|
775 |
|
---|
776 | 2002-03-22: Yuri Dario <mc6530@mclink.it>
|
---|
777 | - USER32: o EnumThreadWindows fix (necessary due to recent process &
|
---|
778 | thread id changes)
|
---|
779 |
|
---|
780 | 2002-03-20: Platon Fomichev <platon@innotek.de>
|
---|
781 | - USER32: o Fixes and changes for minimizing windows (minimized window
|
---|
782 | list; restore; icon paint)
|
---|
783 |
|
---|
784 | 2002-03-20: Sander van Leeuwen <sandervl@innotek.de>
|
---|
785 | - USER32: o BeginPaint change; use entire window if window is minimized
|
---|
786 |
|
---|
787 | 2002-03-18: Sander van Leeuwen <sandervl@innotek.de>
|
---|
788 | - WGSS50: o WGSS update from IBM
|
---|
789 | - WSOCK32: o Return requested version in WSAStartup
|
---|
790 | - GDI32: o Renamed LibMain to avoid name conflict with custom build
|
---|
791 | (shell32)
|
---|
792 |
|
---|
793 | 2002-03-16: Platon Fomichev <platon@innotek.de>
|
---|
794 | - COMCTL32: o Ownerdrawn listview control items have no margin
|
---|
795 | - USER32: o DIB_BitmapInfoSize fix for 24 bpp bitmaps
|
---|
796 | o CloseWindow change; call ShowWindow(SW_MINIMIZE)
|
---|
797 | o GetWindowPlacement fix; always return internally stored
|
---|
798 | rcNormalPosition
|
---|
799 | - WNASPI32: o Added DisableASPI function
|
---|
800 |
|
---|
801 | 2002-03-14: knut st. osmundsen <bird@anduin.net>
|
---|
802 | - Fastdep: o Some minor -E<somthing> issues (non Odin32 use).
|
---|
803 |
|
---|
804 | 2002-03-08: Platon Fomichev <platon@innotek.de>
|
---|
805 | - USER32: o Menu: fix for double click on minimized window (icon)
|
---|
806 |
|
---|
807 | 2002-03-08: Patrick Haller <patrick.haller@innotek.de>
|
---|
808 | - SHELL32: o WINE sync
|
---|
809 | o some WPS integration (ShellExecute can open WPS objects)
|
---|
810 | - SHLWAPI: o PathIsURLA/W fixes for Flask (crash in Flask->About)
|
---|
811 | - USER32: o Moved some icon extraction functions from shell32 to user32
|
---|
812 | - MAKEFILES:
|
---|
813 | o replaced our version of "netapi32.lib" with "wnetap32.lib"
|
---|
814 | to avoid conflict with toolkit
|
---|
815 | - WNETAP32: o replaced NETAPI32 references by WNETAP32 to avoid
|
---|
816 | toolkit conflict (netapi32.lib)
|
---|
817 | o NetBios support implemented (disabled for now)
|
---|
818 | (yet resources are global and not per-process)
|
---|
819 | - WS2_32: o added fake version of WSAEnumProtocol()
|
---|
820 |
|
---|
821 | 2002-03-07: Platon Fomichev <platon@innotek.de>
|
---|
822 | - USER32: o CloseWindow fix (use frame window handle)
|
---|
823 | o Minimize window (WinSetWindowPos, SWP_MINIMIZE) on receival
|
---|
824 | of minimize syscommand
|
---|
825 |
|
---|
826 | 2002-03-06: Platon Fomichev <platon@innotek.de>
|
---|
827 | - USER32: o Fixes for minimized dragging icon and minimized icon distortion
|
---|
828 |
|
---|
829 | 2002-03-05: Platon Fomichev <platon@innotek.de>
|
---|
830 | - USER32: o Allow single minimize or maximize button in titlebar (os/2
|
---|
831 | appearance)
|
---|
832 |
|
---|
833 | 2002-03-04: Yuri Dario <mc6530@mclink.it>
|
---|
834 | - KERNEL32: o Update for Italian NLS info
|
---|
835 | o Fall back to English NLS info if time format not found
|
---|
836 |
|
---|
837 | 2002-03-04: Platon Fomichev <platon@innotek.de>
|
---|
838 | - USER32: o Fix for window restore from minimized state
|
---|
839 |
|
---|
840 | 2002-02-28: Platon Fomichev <platon@innotek.de>
|
---|
841 | - KERNEL32: o Implemented IOCTL_DISK_IS_WRITABLE ioctl & fixes writing
|
---|
842 | to floppy (DASD mode)
|
---|
843 |
|
---|
844 | 2002-02-27: Sander van Leeuwen <sandervl@innotek.de>
|
---|
845 | - USER32: o Removed WindowFromPoint change; has bad effect on many things
|
---|
846 | - KERNEL32: o Removable disk access fix
|
---|
847 |
|
---|
848 | 2002-02-26: Sander van Leeuwen <sandervl@innotek.de>
|
---|
849 | - USER32: o Rewrote GetWindowThreadProcessId (no longer uses WGSS)
|
---|
850 | o WindowFromPoint change; enumerate z-order, not parent-children
|
---|
851 | - KERNEL32: o Changed GetCurrentThreadId to return unique global thread id
|
---|
852 | ((processid SHL 16) | threadid)
|
---|
853 | Thread ids return by WGSS are unique to the process only.
|
---|
854 |
|
---|
855 | 2002-02-25: Sander van Leeuwen <sandervl@innotek.de>
|
---|
856 | - KERNEL32: o Added hooks for FindResource(Ex)A/W (custom build)
|
---|
857 |
|
---|
858 | 2002-02-24: Sander van Leeuwen <sandervl@innotek.de>
|
---|
859 | - OLE32: o Added some missing exports
|
---|
860 |
|
---|
861 | 2002-02-23: knut st. osmundsen <bird@anduin.net>
|
---|
862 | - MAKEFILES:
|
---|
863 | o Cleaned up some demangling mess in makefiles.
|
---|
864 | Now both VAC308 and VAC365 builds works again.
|
---|
865 | - /Makefile:
|
---|
866 | o Added a cleanall rule to /makefile which will cleanup
|
---|
867 | for every compiler and all tree build modes.
|
---|
868 | o Corrected problemous odin_library rules in /makefile.
|
---|
869 | (didn't work on a clean tree)
|
---|
870 | - /src/Makefile:
|
---|
871 | o Corrected directory locking for lib module.
|
---|
872 | (Can now build debug and release builds concurrently.)
|
---|
873 | - Tools: o Synced the common kFile* classes with os2tools.
|
---|
874 | (The thing you do when you're supposed to do something else.. ;) )
|
---|
875 |
|
---|
876 | 2002-02-23: Sander van Leeuwen <sandervl@innotek.de>
|
---|
877 | - WSOCK32: o Don't send FD_CONNECT if socket was already connected
|
---|
878 | (accept returns connected socket)
|
---|
879 |
|
---|
880 | 2002-02-21: Sander van Leeuwen <sandervl@innotek.de>
|
---|
881 | - NTDLL/ADVAPI32:
|
---|
882 | o Some Wine updates
|
---|
883 |
|
---|
884 | 2002-02-21: Platon Fomichev <platon@innotek.de>
|
---|
885 | - IPHLPAPI o GetNetworkParams bugfixes
|
---|
886 |
|
---|
887 | 2002-02-20: Platon Fomichev <platon@innotek.de>
|
---|
888 | - IPHLPAPI o Implemented GetAdaptersInfo & GetNetworkParams
|
---|
889 |
|
---|
890 | 2002-02-20: Sander van Leeuwen <sandervl@innotek.de>
|
---|
891 | - WSOCK32: o Changed reported winsock version to 2.0 (from 1.1)
|
---|
892 | o Bugfix for accept when changing flags of active async request
|
---|
893 | - COMCTL32: o Listview fix: update item width & height during WM_SIZE
|
---|
894 | (fixes incorrect redraws when selecting items in CVP)
|
---|
895 |
|
---|
896 | 2002-02-20: Dmitry Froloff <froloff@os2.ru>
|
---|
897 | - PELDR: o Added support for WINDOWSPATH environment variable; PE
|
---|
898 | searches for executables in directories listed in WINDOWSPATH
|
---|
899 |
|
---|
900 | 2002-02-19: Sander van Leeuwen <sandervl@innotek.de>
|
---|
901 | - KERNEL32: o Added support for Russian country code + other countries
|
---|
902 | - OLE32: o Removed old code + some unnecessary changes
|
---|
903 | - SHELL32: o compile fix for SHBrowseForFolderW (due to recent header changes)
|
---|
904 |
|
---|
905 | 2002-02-18: Patrick Haller <patrick.haller@innotek.de>
|
---|
906 | - USER32: o fixed structure size for
|
---|
907 | SystemParametersInfo(SPI_GETNONCLIENTMETRICSA)
|
---|
908 | o fixed GetModuleHandleW(NULL) string conversion
|
---|
909 |
|
---|
910 | 2002-02-18: knut st. osmundsen <bird@anduin.net>
|
---|
911 | - KERNEL32: o Tried to work around the 4.51 toolkit issue with the
|
---|
912 | QS*/qs typedefs. Hope this wont cause any problems...
|
---|
913 |
|
---|
914 | 2002-02-18: Sander van Leeuwen <sandervl@innotek.de>
|
---|
915 | - USER32: o Added function to force color to mono mouse cursor conversion
|
---|
916 | (for mouse cursors with more than 2 colors)
|
---|
917 |
|
---|
918 | 2002-02-14: Sander van Leeuwen <sandervl@innotek.de>
|
---|
919 | - OLE32: o Extended logging added
|
---|
920 | o Resync with Wine (20020215)
|
---|
921 | (Out of process COM objects; InstallShield 6)
|
---|
922 | - OLEAUT32: o Partial resync with Wine (20020215)
|
---|
923 | o Extended logging added
|
---|
924 | - COMCTL32: o Extended logging added
|
---|
925 | - KERNEL32: o Named pipe updates
|
---|
926 |
|
---|
927 | 2002-02-13: Sander van Leeuwen <sandervl@innotek.de>
|
---|
928 | - SHELL32: o Extended logging added
|
---|
929 |
|
---|
930 | 2002-02-12: Sander van Leeuwen <sandervl@innotek.de>
|
---|
931 | - SHLWAPI: o StrFromTimeIntervalA/W takes 4 parameters, not 2
|
---|
932 | o Added extended logging
|
---|
933 |
|
---|
934 | 2002-02-12: Platon Fomichev <platon@innotek.de>
|
---|
935 | - USER32: o Ignore keyboard messages (PM) with scancode 0
|
---|
936 |
|
---|
937 | 2002-02-11: Platon Fomichev <platon@innotek.de>
|
---|
938 | - USER32: o Fix for double enter keyboard messages
|
---|
939 |
|
---|
940 | 2002-02-11: Sander van Leeuwen <sandervl@innotek.de>
|
---|
941 | - KERNEL32/USER32:
|
---|
942 | o Moved Char*, IsChar*, Oem* functions to kernel32
|
---|
943 | (forwarders in user32)
|
---|
944 | - USER32: o Fixed reference count leak in SetFocus, GetDlgCtrlID,
|
---|
945 | EndDialog & window dtor
|
---|
946 |
|
---|
947 | 2002-02-10: Sander van Leeuwen <sandervl@innotek.de>
|
---|
948 | - USER32: o Extended logging added
|
---|
949 |
|
---|
950 | 2002-02-10: Platon Fomichev <platon@innotek.de>
|
---|
951 | - USER32\PMKBDHK:
|
---|
952 | o Fixes for shift-enter & shift-enter (numpad)
|
---|
953 | - USER32: o Numpad enter fix for GetKeyNameTextA
|
---|
954 |
|
---|
955 | 2002-02-10: Dmitry Froloff <froloff@os2.ru>
|
---|
956 | - KERNEL32: o Translate strings used for Dos* functions from Windows
|
---|
957 | to OS/2 codepage
|
---|
958 | o Translate strings returned by Dos* functions from OS/2
|
---|
959 | to Windows codepage
|
---|
960 | - USER32: o Translate strings used to set the window title (OS/2 mode)
|
---|
961 | from Windows to OS/2 codepage.
|
---|
962 |
|
---|
963 | 2002-02-09: Sander van Leeuwen <sandervl@innotek.de>
|
---|
964 | - KERNEL32: o Logging updates
|
---|
965 | - INCLUDE\makefiles:
|
---|
966 | o New rules for generating .def files
|
---|
967 |
|
---|
968 | 2002-02-08: Sander van Leeuwen <sandervl@innotek.de>
|
---|
969 | - KERNEL32: o Implemented tracing of all exported functions
|
---|
970 | (meant to replace ODINFUNCTION* macros; useful mainly
|
---|
971 | to improve logging in Wine modules)
|
---|
972 |
|
---|
973 | 2002-02-08: Platon Fomichev <platon@innotek.de>
|
---|
974 | - USER32: o Fixes for handling Shift-Enter & Alt-Enter
|
---|
975 |
|
---|
976 | 2002-02-08: knut st. osmundsen <bird@anduin.net>
|
---|
977 | - WRC: o Added codepage.c from kernel32 as a hotfix to the
|
---|
978 | unresolved external issue. Only the get_char_typeW
|
---|
979 | is enabled.
|
---|
980 |
|
---|
981 | 2002-02-07: Sander van Leeuwen <sandervl@innotek.de>
|
---|
982 | - KERNEL32: o Thread change: determine if thread callback is inside
|
---|
983 | a PE dll. If it is, then force switch to win32 TIB.
|
---|
984 | (necessary for Opera when loading win32 plugins)
|
---|
985 | o Use NLS resources from Wine (no longer rely on OS/2 unicode
|
---|
986 | dll)
|
---|
987 | o ole2nls update; now use GetLocaleInfoA/W from Wine
|
---|
988 |
|
---|
989 | 2002-02-06: Sander van Leeuwen <sandervl@innotek.de>
|
---|
990 | - WSOCK32: o minor recv update for error handling
|
---|
991 | - USER32: o Ported TrackMouseEvent (Wine 20020122)
|
---|
992 | - KERNEL32: o SetWin32TIB update (switch to force switch to win32 FS selector)
|
---|
993 | o Force switch to win32 FS selector when calling PE image
|
---|
994 | entrypoints (necessary for Odin32 applications that use
|
---|
995 | PE dlls (like Opera))
|
---|
996 | - COMCTL32: o Wine updates (smoothscroll, ipaddress, rebar, toolbar, tab,
|
---|
997 | comboex, imagelist) (20020122)
|
---|
998 | - SHLWAPI: o Wine resync (20020122)
|
---|
999 |
|
---|
1000 | 2002-02-05: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1001 | - USER32: o Ported SendMessageCallbackA/W, SendMessageTimeoutA/W,
|
---|
1002 | SendNotifyMessageA/W from Wine (20020122)
|
---|
1003 | o Rewrote SendMessageA/W to behave more like Wine
|
---|
1004 | (hook calls)
|
---|
1005 |
|
---|
1006 | 2002-02-03: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1007 | - KERNEL32; o Added dummy executable class
|
---|
1008 | o Ported GetTempPathA/W from Wine
|
---|
1009 |
|
---|
1010 | 2002-01-26: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1011 | - OLE32: o Fixed bug in OLE clipboard implementation; the handle
|
---|
1012 | returned by GetClipboardData is no longer valid after
|
---|
1013 | calling CloseClipboard. A copy of the data must be made.
|
---|
1014 |
|
---|
1015 | 2002-01-20: Vitali Pelenyov <sunlover@anduin.net>
|
---|
1016 | - USER32: o Fix for position of fake window (CreateFakeWindowEx)
|
---|
1017 |
|
---|
1018 | 2002-01-18: Vitali Pelenyov <sunlover@anduin.net>
|
---|
1019 | - KERNEL32: o GetDriveType fix for detection cdrom drives under certain
|
---|
1020 | circumstances (when cdrom is not the last drive letter)
|
---|
1021 |
|
---|
1022 | 2002-01-10: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1023 | - USER32: o CreateFakeWindowEx change; need to specifiy window class
|
---|
1024 | Added DestroyFakeWindow for deleting fake window object.
|
---|
1025 | - KERNEL32: o Custom device driver changes for driver instance pointer
|
---|
1026 |
|
---|
1027 | 2002-01-09: knut st. osmundsen <bird@anduin.net>
|
---|
1028 | - Tools/CmdQd:
|
---|
1029 | o Corrected bad fix from 2002-01-01.
|
---|
1030 |
|
---|
1031 | 2002-01-09: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1032 | - KERNEL32: o Add driver data parameter to custom device driver calls
|
---|
1033 |
|
---|
1034 | 2002-01-08: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1035 | - KERNEL32: o Fixes for DosQueryAffinity & DosSetAffinity on non-SMP
|
---|
1036 | systems (set default/ignore)
|
---|
1037 | - USER32: o Fixed restoring of windows after minimizing/maximizing
|
---|
1038 | o Allocate more memory for 40x40 icon generation
|
---|
1039 | o Fixed SetClipboardData for CF_UNICODETEXT (translate to
|
---|
1040 | ascii and use CF_TEXT)
|
---|
1041 |
|
---|
1042 | 2002-01-06: knut st. osmundsen <bird@anduin.net>
|
---|
1043 | - DailyBuild:
|
---|
1044 | o - Do not distribute odin.ini.
|
---|
1045 |
|
---|
1046 | 2002-01-06: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1047 | - KERNEL32: o Changed HeapAlloc/HeapReAlloc:
|
---|
1048 | - round up size to next 8 bytes boundary
|
---|
1049 | - when reallocating memory block, don't use different
|
---|
1050 | memory block unless new size is larger than old size
|
---|
1051 | (rounded up to next 8 bytes boundary)
|
---|
1052 | (Verified this behaviour in NT4 (Global/Heap(Re)Alloc);
|
---|
1053 | fixes crashes in Opera 5.12 which relies on this 'feature')
|
---|
1054 | - GDI32: o Print handle type name in SelectObject
|
---|
1055 | o EnumFontProcExW -> must restore FS in enum handler
|
---|
1056 |
|
---|
1057 | 2002-01-04: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1058 | - KERNEL32: o Rewrote GetDriveType (fixes detection of LAN drives)
|
---|
1059 |
|
---|
1060 | 2002-01-02: Sander van Leeuwen <sandervl@innotek.de>
|
---|
1061 | - GDI32: o Better logging for some text functions
|
---|
1062 |
|
---|
1063 | 2002-01-01: knut st. osmundsen <bird@anduin.net>
|
---|
1064 | - Tools/CmdQd:
|
---|
1065 | o Ignore the CmdQd kill returncode in clean2.
|
---|