source: trunk/changelog@ 9957

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

* empty log message *

File size: 41.3 KB
Line 
1/* $Id: changelog,v 1.2532 2003-03-28 13:57:41 sandervl Exp $ */
2
3 2003-03-28: Sander van Leeuwen <sandervl@innotek >
4 - USER32: o Removed changes for window tracking (move/size) with full
5 window dragging enabled (2003-03-27)
6
7 2003-03-27: Sander van Leeuwen <sandervl@innotek >
8 - USER32: o Don't change focus when processing mouse button message if
9 the top parent is a fake window
10 o Changes for window tracking (move/size) with full window
11 dragging enabled
12 - KERNEL32: o Memory map updates
13
14 2003-03-26: Sander van Leeuwen <sandervl@innotek >
15 - KERNEL32: o WaitForSingleObject/(Msg)WaitForMultipleObject fixes to
16 prevent thread priorities from being accidentally boosted to
17 time critical
18
19 2003-03-22: Sander van Leeuwen <sandervl@innotek >
20 - USER32: o If an application doesn't validate the update region
21 while processing WM_PAINT, then we must remember it for
22 the next time.
23 Windows will only send a WM_PAINT once until another part of
24 the window is invalidated. Unfortunately PM keeps on sending
25 WM_PAINT messages until we validate the update region.
26 This affects UpdateWindow, RedrawWindow, GetUpdateRgn, GetUpdateRect,
27 BeginPaint and the next WM_PAINT message.
28
29 2003-03-20: Sander van Leeuwen <sandervl@innotek >
30 - USER32: o WindowFromPoint: only send WM_NCHITTEST to windows belonging
31 to the current thread
32 o Changes for fake windows. Moved them into a seperate C++ class
33 and overload some methods to correct the behaviour.
34
35 2003-03-18: Platon Fomichev <platon@innotek >
36 - USER32: o Shift/Ctrl/Alt+Numpad keys illegal behaviour. Generic numpad
37 keys like (/*-+) produced garbage.
38
39 2003-03-12: Platon Fomichev <stauff@innotek >
40 - USER32: o GetKeyState and GetAsyncKeyState fixes for numpad keyboard
41
42 2003-03-06: Sander van Leeuwen <sandervl@innotek >
43 - KERNEL32: o Don't change the stack alignment if the thread has less than
44 128 kb stack.
45 - WINMM: o Improved accuracy of waveIn/OutGetPosition. (use FPU to prevent
46 rounding errors)
47 o Added code to dump played wave data to disk (disabled by default)
48
49 2003-03-06: knut st. osmundsen <Knut.Osmundsen@innotek >
50 - KERNEL32: o The WIN32LOG_FILEBASE env.var. can be used to point the logfile
51 elsewhere. "%d.log" is added to the value.
52 o Print szLineExceptionType too in exception dump.
53 o Custombuild apis for entering and leaving Odin thread context.
54 o Added functions to quickly get the PID & TID
55
56 2003-03-05: knut st. osmundsen <bird-odin-spam@anduin >
57 - MAKE: o Experimental OTHERS variable.
58 o Full source path to compilers.
59
60 2003-03-05: Sander van Leeuwen <sandervl@innotek >
61 - WINMM: o timeBegin/EndPeriod: check for upper and lower boundaries
62 o waveoutGetPosition: return 0 if stream is not active (DART)
63 o waveinGetPosition: return 0 if stream is not active (DART)
64 o Don't print a warning for CALLBACK_NULL callbacks
65 o Added ODIN_waveInSetFixedBuffers, renamed SetFixedWaveBufferSize
66 to ODIN_waveOutSetFixedBuffers. Used to tell WINMM to use
67 the waveOutWrite buffer size for the DART buffers.
68 o Don't pause the wave stream if no buffers left to add. Let
69 DART detect the underrun condition.
70
71 2003-03-04: Platon Fomichev <stauff@innotek >
72 - USER32: o We did not pay attention to numlock state on numpad keyboard.
73
74 2003-03-03: Dietrich Teickner <Dietrich_Teickner@t-online >
75 - GDI32: o ExtTextOutA: copy string and force zero termination
76 - SHELL32: o Minor updates
77
78 2003-03-03: Sander van Leeuwen <sandervl@innotek >
79 - WSOCK32: o Removed wrong checks for invalid address parameters in
80 sendto & recvfrom
81
82 2003-03-01: Sander van Leeuwen <sandervl@innotek >
83 - KERNEL32: o ExitProcess: turn off hard errors & exception popups before
84 calling O32_ExitProcess (release build only)
85 o DeleteFile: when deleting a .lnk file, verify if it's a shell
86 link object file. if so, delete WPS object
87 o ODIN_DisableFolderShellLink added: disable object creation in
88 Odin folder. Desktop shortcuts will still be created as WPS
89 objects on the desktop.
90 o OSLibWinCreateObject: create shelllink file with WPS object id
91 - USER32/KERNEL32:
92 o Move OSLibWinCreateObject to KERNEL32
93 - SHELL32: o Shelllink: use kernel32 file functions instead of those from
94 the VAC crt
95
96 2003-02-28: Sander van Leeuwen <sandervl@innotek >
97 - SRC\makefile:
98 o Skip msvcrt & crtdll for now. Causes too many problems with
99 Odin builds.
100 - KERNEL32: o Fixed CreateProcessA regression (Lotus Notes)
101 o Check for invalid data while measuring the CPU speed. DosTmrQueryTime
102 isn't very reliable (on laptops).
103 o ExitProcess: don't remove our exception handler too early
104 o Map ERROR_PATH_NOT_FOUND (OS/2) to ERROR_INVALID_NAME
105 - WINMM: o Protect linked timer list with VMutex object.
106
107 2003-02-28: knut st. osmundsen <Knut.Osmundsen@innotek >
108 - MAKEFILES:
109 o New rule cleanall which tries to wipe out all the output.
110 o ODIN32_LIB and ODIN32_BIN is now the same for all the CCENVs.
111 (AFAIK we no longer try compile stuff with many compiles, but
112 stick too the once which are working, VAC3 or EMX that is.)
113 o Linenumbers in release mode.
114 o Pass full source file names to compilers so the debugger easier
115 will find the the right source.
116 o Defined STATIC_CRT in src/win32k/utils.
117 o Profiling: Link with kProfile.lib when DEBUG= and PROFILE=1.
118 Configured this for EMX targets too. (state: Experimental)
119
120 2003-02-28: Platon Fomichev <stauff@innotek >
121 - USER32: o Wrong checks on restoration point remembering. Maximizing
122 window from PM icon using keyboard or menu produced wrong
123 controls.
124
125 2003-02-27: Sander van Leeuwen <sandervl@innotek >
126 - KERNEL32: o VirtualAlloc: fixed handling of commit for a page range
127 that is not entirely reserved (contains committed pages)
128 o Don't call WinMessageBox in the unhandled exception filter as
129 that can hang PM.
130
131 2003-02-27: Platon Fomichev <stauff@innotek >
132 - USER32: o Illegal PM sequence of maximizing from icon state corrected.
133 Inter-thread controls change caused PM lockups. Rewrote
134 PM window frame controls manipulation procedure.
135
136 2000-02-27: Achim Hasenmueller <achimha@innotek >
137 - KERNEL32: o MoveFile: detect if source and target file names are on a
138 different drive and use DosCopy/DosDelete instead of DosMove
139 in this case.
140
141 2003-02-26: Sander van Leeuwen <sandervl@innotek >
142 - RICHED32: o Rewrote control; no longer creates a child Edit window as this
143 doesn't happen in Windows and breaks subclassing
144 o EM_CHARFROMPOS is different for RichEdit controls (lParam is
145 a POINTL pointer)
146 o Implemented EM_FINDWORDBREAK
147
148 2003-02-25: Sander van Leeuwen <sandervl@innotek >
149 - USER32: o Bugfix for WPS object creation
150 - RICHED32: o Added support for EM_SETCHARFORMAT (text & background color)
151 & EM_SETBKGNDCOLOR.
152
153 2003-02-24: Sander van Leeuwen <sandervl@innotek >
154 - WS2_32: o Implemented non-overlapped WSARecv & WSASend.
155 - WSOCK32: o check for local host name in gethostbyname. if identical,
156 then use "localhost" instead
157 - KERNEL32: o GetFullPathNameA: don't change the input string
158 o Added ODIN_IsWin32App export to determine whether an app
159 is a win32 or os2 binary.
160 - USER32: o Changes for creating WPS objects (win32/os2 app)
161 o Added function to convert an icon group in memory
162 - SHELL32: o Convert win32 icon file to os2 format when creating a shell link.
163
164 2003-02-23: knut st. osmundsen <bird@anduin >
165 - TOOLS/ALIASDEF:
166 o A tool for generating alias records from an .def file.
167 Something I wrote will playing with NTDLL here.
168
169 2003-02-22: Sander van Leeuwen <sandervl@innotek >
170 - WS2_32: o Added WSARecv(From) & WSASend(To) stubs
171
172 2003-02-22: Platon Fomichev <stauff@innotek >
173 - USER32: o Restoring maximized window from iconic state caused window
174 frame controls to behave badly. General out-of-sync problems
175 with frame controls. Invisibility of frame controls after
176 lots of minimizing/restoring.
177
178 2003-02-22: Dietrich Teickner <Dietrich_Teickner@t-online >
179 - SHELL32: o Shell file operation updates
180
181 2003-02-20: knut st. osmundsen <Knut.Osmundsen@innotek >
182 - KERNEL32: o Added custombuild API for registering a callback for LX Dll
183 loading thru LoadLibrary*().
184
185 2003-02-18: Sander van Leeuwen <sandervl@innotek >
186 - KERNEL32: o Touch last stack page using ESP. (just in case)
187 o Cleaned up memory map code.
188
189 2003-02-17: Sander van Leeuwen <sandervl@innotek >
190 - KERNEL32: o FindFirstFile: return ERROR_FILE_NOT_FOUND if DosFindFirst
191 returns ERROR_PATH_NOT_FOUND
192 - USER32: o Single Alt down + up always generates WM_SYSKEYUP; reset
193 iMenuSysKey on WM_KEYUP, so the system menu isn't accidentally
194 activated.
195
196 2003-02-16: Sander van Leeuwen <sandervl@innotek >
197 - USER32: o ToAscii: fixed wrong checks for VK_SHIFT/CONTROL/MENU
198 o Fixed broken implementation of GetKeyState, GetAsyncKeyState
199 and GetKeyboardState
200 o Do not translate WM_KEYUP to WM_SYSKEYUP if AltGr released
201 and KC_LONEKEY flag is set. (only for Alt)
202 o GetKeyboardState, GetKeyState, GetAsyncKeyState:
203 pretend left Ctrl key is pressed if AltGr down.
204 - PMKBDHK: o Special handling of AltGr key. Must send Ctrl key messages
205 like Windows.
206
207 2003-02-14: Dietrich Teickner <Dietrich_Teickner@t-online >
208 - SHELL32: o Shell file operation updates
209
210 2003-02-13: Sander van Leeuwen <sandervl@innotek >
211 - USER32: o Handle SetFocus(0) correctly: keystrokes are converted into
212 WM_SYSKEYDOWN/(WM_SYSCHAR)/WM_SYSKEYUP messages
213 o DrawFocusRect: conflict between SetROP2(R2_XORPEN) and
214 SetBkMode(TRANSPARENT); commenting out the latter for now.
215 - SHELL32: o Control panel Wine resync
216 - KERNEL32: o Added ODIN_SetTIBSwitch function to override TIB selector
217 switching.
218 o Forward RtlZero/Move/FillMemory to ntdll
219 - NTDLL: o Cleaned up
220
221 2003-02-11: Sander van Leeuwen <sandervl@innotek >
222 - USER32: o When a window is activated by a mouse click, we must set
223 focus to the client window (and not the frame!).
224 o GetSysColor: always return cached colors
225
226 2003-02-10: Sander van Leeuwen <sandervl@innotek >
227 - KERNEL32: o Touch all stack pages we skip in the out of stack workaround for
228 16 bits code. Jumping over the guard page causes a protection
229 violation exception.
230 - USER32: o EnumThreadWindows: must return windows in Z-order
231 (experiments show EnumThreadWindows in NT4 behaves like this)
232
233 2003-02-07: Sander van Leeuwen <sandervl@innotek >
234 - DDRAW/NTDLL:
235 o Rename resource directory
236 - USER32: o Don't save position (for restore) in SetWindowPos if window
237 is minimized .
238
239 2002-02-06: Dietrich Teickner <Dietrich_Teickner@t-online >
240 - USER32: o Edit control: fixed heap corruption in undo buffer
241
242 2003-02-06: Sander van Leeuwen <sandervl@innotek >
243 - ODINCRT: o Rewrote critical sections to be safe on SMP systems
244 (previous implementation had one flaw that happened
245 to be triggered often on my SMP machine)
246 - USER32: o Edit control: Always kill the timer if in captured state.
247 The app can call ReleaseCapture before we get the WM_LBUTTONUP
248 message.
249 o Send WM_QUERYNEWPALETTE when a window receives focus
250 o Translate WM_REALIZEPALETTE into WM_PALETTECHANGED
251 - GDI32: o Must manually correct y coordinates for DIB section blit since
252 we reset the y inversion back to 0.
253 (subtract twice the viewport & windows origin y)
254 o CreateDIBSection: don't get palette from DC if bitmap bits provided
255
256 2003-02-05: Sander van Leeuwen <sandervl@innotek >
257 - KERNEL32: o Check ESP when calling the entrypoint of a newly created thread.
258 If close to a 64kb boundary, adjust it. Some ancient 16 bits
259 code will crash if there's not enough stack left.
260
261 2003-02-04: Sander van Leeuwen <sandervl@innotek >
262 - KERNEL32: o Support DuplicateHandle for threads
263 o Fixed command line parsing regression
264 - DDRAW: o FS corruption in SetCooperativeLevel
265
266 2003-02-02: Sander van Leeuwen <sandervl@innotek >
267 - INCLUDE\makefiles:
268 o Define STATIC_CRT for all exe targets
269
270 2003-01-30: Sander van Leeuwen <sandervl@innotek >
271 - KERNEL32: o CreateProcess changes for parsing the application name
272 and command line strings
273
274 2003-01-29: Sander van Leeuwen <sandervl@innotek >
275 - USER32: o OS/2 Look & Feel is now default
276 o Use OS/2 colors again in OS/2 L&F mode
277
278 2003-01-28: Sander van Leeuwen <sandervl@innotek >
279 - USER32: o Don't use DrawFocusRect from WGSS anymore
280 - GDI32: o Fixes for InternalTextOutA without y-inversion (not activated)
281
282 2003-01-27: Platon Fomichev <platon@innotek >
283 - INCLUDE: o Illegal calling convention specified for _System calling
284 convention in headers for GCC. Bugs in ASM code for SetFS
285 RestoreFS.
286 - NTDLL: o In C++ files specify extern "C" for _System calling convention
287 as well. Affected _DLL_InitTerm
288
289 2003-01-23: knut st. osmundsen <bird-odin-spam@anduin.net>
290 - TOOLS\COMMON, TOOLS\WRC\U:
291 o Define STATIC_CRT so wrapper headers doesn't kick in.
292
293 2003-01-23: Sander van Leeuwen <sandervl@innotek >
294 - INCLUDE\*.mk:
295 o Don't use include\incl_vac for statically linked targets
296 (e.g. tools)
297 - ODINCRT: o Added wrappers for new & delete operators
298 - ODINPROF, IPLOG, OLE32\REGSVR32;
299 o Link with static CRT library
300 - MAKE\setup.mak:
301 o Only add include\incl_vac if not building an odin32 app
302
303 2003-01-23: Platon Fomichev <platon@innotek >
304 - DOC: o Added build instructions for GCC
305 - NTDLL: o Made initntdll a C file to remove C++ GCC stuff for now
306 and added RtlBitmap support from Wine.
307 - INCLUDE: o Correced odinlx.h header - problem while compiling with
308 C compiler.
309
310 2003-01-22: Sander van Leeuwen <sandervl@innotek >
311 - ODINCRT: o Renamed wrapper functions
312 - INCLUDE\incl_vac:
313 o Changed VAC headers to rename memory and file functions
314 (those that change FS when called)
315 - MAKE, INCLUDE\*.mk:
316 o Add include\incl_vac first to include path (/I)
317 - KERNEL32: o Removed WriteLogError
318
319 2003-01-22: Platon Fomichev <platon@innotek >
320 - NTDLL: o Dll load/unload changes
321
322 2003-01-21: Sander van Leeuwen <sandervl@innotek >
323 - DDRAW: o Removed dependency on dive.dll. Load it on demand.
324 - USER32: o Moved debug wrapper for DDE to dde.cpp
325
326 2003-01-19: Sander van Leeuwen <sandervl@innotek >
327 - KERNEL32: o Only load LVM.DLL when we actually need it.
328 o CreateProcess bugfix for thread id if launched directly
329 o CreateFile returns ERROR_ALREADY_EXISTS if file not found
330 and CREATE_NEW
331 o Check and correct process type in thread wrapper. WinCreateMsgQueue
332 fails for non-PM apps. We set it to PM in the VIO loader, but
333 apparently it can be changed back.
334
335 2003-01-18: Sander van Leeuwen <sandervl@innotek >
336 - KERNEL32: o FindFirstFile must return ERROR_FILE_NOT_FOUND when
337 the specified file or directory isn't present.
338 (OS/2 returns ERROR_NO_MORE_FILES)
339
340 2003-01-16: Sander van Leeuwen <sandervl@innotek >
341 - KERNEL32: o Fixed heap corruption in CreateProcess (with current dir)
342 - USER32: o Only the combo bitmap header is wrong; the others are fine
343 (regression from 2003-01-05)
344
345 2003-01-16: Platon Fomichev <platon@innotek >
346 - NTDLL: o Changes for building dll with GCC
347
348 2003-01-15: Platon Fomichev <platon@innotek >
349 - MSVCRT: o Updates
350 - VERSION: o Don't use crtdll
351 - INCLUDE: o Updates for GCC builds
352
353 2003-01-14: Sander van Leeuwen <sandervl@innotek >
354 - WINMM: o Delete all wave object on unload
355 o Fix linked list synchronization
356
357 2003-01-13: Sander van Leeuwen <sandervl@innotek >
358 - KERNEL32: o Don't allocate selectors anymore. Allocate tiled memory
359 and call Dos32FlatToSel.
360 o Get default stack size from PE header.
361 o Thread handles not closed properly.
362
363 2003-01-12: Sander van Leeuwen <sandervl@xs4all >
364 - KERNEL32: o Ported QueryDosDeviceA/W from Rewind
365 Return all valid drive letters in QueryDosDeviceA/W(NULL)
366 Return full device name for drive letters
367 o Implemented IOCTL_SCSI_GET_CAPABILITIES
368 o Do not fail CDIO init if media not present
369
370 2003-01-10: Sander van Leeuwen <sandervl@innotek >
371 - KERNEL32: o Don't close handle in CloseHandle if HANDLE_FLAG_PROTECT_FROM_CLOSE
372 flag set.
373 o Implemented Set/GetHandleInformation
374 o CreateFile: create handles that are not inherited by child
375 processes by default
376 Only enable inheritance if specified in security struct
377 o Create(Named)Pipe: default = not inherited by child processes
378 Only enable inheritance if specified in security
379 struct.
380 o DuplicateHandle; set inheritance flag with SetHandleInformation
381 o CreateProcess: support for setting stdin/out/err handles
382 of child process
383 o PeekNamedPipe: - return ERROR_BROKEN_PIPE when used for unnamed
384 pipes (which is not allowed in OS/2)
385 (workaround)
386 - USER32: o ScrollDC bugfix; must convert rectangle returned by GetClipBox
387 to device coordinates
388
389 2003-01-10: Platon Fomichev <platon@innotek >
390 - MSVCRT: o Updates
391 - CRTDLL: o Wine port (forwarder dll to msvcrt)
392
393 2003-01-10: Herwig Bauernfeind <herwig.bauernfeind@aon >
394 - ODINBUG: o Updated to version 0.5.8
395
396 2003-01-08: Sander van Leeuwen <sandervl@innotek >
397 - KERNEL32: o SetTimeZoneInformation: save info in registry:
398 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
399 o GetTimeZoneInformation: read info from registery if present;
400 otherwise call WGSS
401 o RegQueryValue(Ex)W: workaround to return bytes for strings
402 must always be executed when lpcbData != NULL.
403
404 2003-01-07: Sander van Leeuwen <sandervl@innotek >
405 - USER32: o Convert color masks to b&w in CreateIconIndirect
406 - RICHED32: o Don't forward WM_NCCALCSIZE to Edit control or else the
407 richedit parent's client area is resized. We already
408 resize the Edit child in the WM_SIZE handler.
409 o Wrong call to ctordtorTerm; removed it and ctordtorInit
410 since there's no C++ code in that dll anyway.
411 - ODININST: o Parse TZ environment variable and save timezone information
412 to the registry. (default is CET if not found)
413
414 2003-01-06: Sander van Leeuwen <sandervl@innotek >
415 - WSOCK32: o Better method to cancel all async requests in WSACleanup
416 - USER32: o Invalidate window when it's resized and SWP_NOCOPYBITS
417 is specified.
418 o Fixed icon leak in IconForWindow method (call LoadImageA
419 with LR_SHARED flag to reuse icons)
420
421 2003-01-06: Platon Fomichev <platon@innotek >
422 - ConfigureGCC.cmd,
423 INCLUDE\win\msvcrt,
424 INCLUDE\emx makefiles
425 MSVCRT:
426 o Wine port of MSVCRT (build with GCC)
427
428 2003-01-05: Sander van Leeuwen <sandervl@innotek >
429 - KERNEL32: o Added ODIN_SetDllLoadCallback; install a dll load hook
430 that's called as soon as all exports are processed
431 (so before any code is executed that can use the dll)
432 o Added ODIN_SetProcAddress; override a name or ordinal export
433 - USER32: o Corrected wrong bitmap headers in resources
434 o Added workaround for handling black & white cursors
435
436 2002-01-05: Dietrich Teickner <Dietrich_Teickner@t-online >
437 - USER32: o Return MA_NOACTIVATE in listbox WM_MOUSEACTIVATE handler.
438 (apparently not necessary anymore in Wine; so probably
439 caused by something else)
440
441 2003-01-04: Sander van Leeuwen <sandervl@innotek >
442 - USER32: o Corrected drawing of menubar in OS/2 L&F mode (when highlighted)
443 o Fixed handling of single ALT to select menu
444 o Use different color for highlighted menus (OS/2 L&F)
445 - GDI32: o Removed broken handling of TA_RIGHT in TextOut
446 o Flip bitmap in GetDIBits if height is negative
447 o Only return bitfield data in GetDIBits if compression set
448 to BI_BITFIELDS (and lpvBits is not NULL)
449
450 2003-01-03: Sander van Leeuwen <sandervl@innotek >
451 - USER32: o Merged Rewind menu control
452 o Fixed GetSystemMetrics(SM_CXMENUCHECK); should be 13
453 o Always use windows system colors (even in OS/2 L&F mode)
454
455 2002-01-03: Dietrich Teickner <Dietrich_Teickner@t-online >
456 - KERNEL32: o Convert timezone names in Set/GetTimeZoneInformation as
457 WGSS expects/returns ascii strings instead of unicode.
458
459 2003-01-02: Sander van Leeuwen <sandervl@innotek >
460 - KERNEL32: o Set the codepage of the message queue for each new thread
461 that is created. (done for the main thread in user32)
462 - USER32: o Fix for composite keyboard character translation
463 (e.g. ^ on german keyboards)
464 o SystemParametersInfoA fix for SPI_GETNONCLIENTMETRICS in
465 OS/2 L&F (font height must be negative)
466 o Deactivate window when hiding it to force PM to switch focus.
467 (Note: might cause regressions!)
468 o Fixed behaviour of SetFocus(NULL); should return the current
469 focus window.
470
471 2003-01-01: Sander van Leeuwen <sandervl@innotek >
472 - USER32: o Fixes for windows with an iconless class and WS_EX_DLGMODALFRAME
473 style. (they shouldn't have a system menu)
474 (either right after creation or when the app add this extended
475 style later on)
476 o Remove minimize or maximize controls when the app requests it
477 (OS/2 GUI mode)
478 - GDI32: o Cleaned up SetDIBitsToDevice
479
480 2002-12-31: Sander van Leeuwen <sandervl@innotek >
481 - USER32: o Removed wrong cx & cy check during window creation
482
483 2000-12-30: Achim Hasenmueller <achimha@innotek >
484 - COMDLG32: o Added string check to PRINTDLG_SetUpPrinterListComboA
485
486 2002-12-30: Yuri Dario <mc6530@mclink >
487 - USER32: o Fixed regression in Set/GetClassLong. (default must be ascii;
488 not unicode)
489
490 2002-12-30: Sander van Leeuwen <sandervl@innotek >
491 - GDI32: o Support reversed bitmap data in SetDIBits
492 - DDRAW: o Fixed pitch for offscreen surfaces so it doesn't conflict
493 with GetDIBits/SetDIBits alignment (aligned at dword boundary)
494 o Use GetDIBits & SetDIBits with negative height. Origin must
495 be top left.
496 - PELDR: o Statically link CRT library. (to remove dependency on odincrt)
497
498 2002-12-29: Sander van Leeuwen <sandervl@innotek >
499 - DDRAW: o Cleanup
500 - KERNEL32: o Fix return value in case of error in SetThreadPriority
501 o Fixed GetSystemTimeAsFileTime
502 - USER32: o Fix for painting a completely ownerdrawn menu (owner window
503 was wrong; need to resync with Rewind/Wine)
504 o Don't proceed with DoNCPaint if window is invisible or minimized
505
506 2002-12-28: Sander van Leeuwen <sandervl@innotek >
507 - USER32: o Changed default WM_MOUSEACTIVATE handler (like Wine now)
508 - PELDR: o Change BEGINLIBPATH before loading any dlls. It's now no
509 longer required to have the system32 directory present
510 in the system LIBPATH.
511 - GDI32: o SetDIBitsToDevice fix for inverted blitting
512
513 2002-12-28: Dietrich Teickner <Dietrich_Teickner@t-online >
514 - USER32: o Listbox fix for WM_SETFONT; update listbox height
515 - SHELL32: o FO_RENAME updates for shell file operations
516
517 2002-12-28: Jochen Sch„fer <josch@joschs-robotics >
518 - GDI32: o Compile fixes for IBM VAC 3.6.5
519
520 2002-12-27: Sander van Leeuwen <sandervl@innotek >
521 - KERNEL32: o Cleaned up console code (hardcoded WriteLog calls)
522 o Fixed stack address detection in VirtualFree
523
524 2002-12-20: Sander van Leeuwen <sandervl@innotek >
525 - KERNEL32: o Removed obsolete code for Glide drivers and IOPL
526 o Don't display message boxes for module load errors. Pass
527 errors back to the PE loader.
528 - DDRAW: o Removed IOPL override code
529 - PELDR: o Error handling changes
530 - USER32: o Send WM_H/VSCROLL with SB_THUMBTRACK when the scrollbar thumb
531 receives a WM_LBUTTONDOWN message
532
533 2002-12-19: Dietrich Teickner <Dietrich_Teickner@t-online >
534 - KERNEL32: o GetFileTime & SetFileTime fixes; need to convert between
535 UTC and local file time
536
537 2002-12-18: Sander van Leeuwen <sandervl@innotek >
538 - USER32: o Ported listbox, combo & edit controls from ReWind
539 o Changes for window classes with both ascii & unicode
540 window procedures
541 o Replace WS_BORDER style with WS_EX_CLIENTEDGE extended style
542 when creating dialog controls. (as done in Wine/Rewind)
543 (corrects wrong borders with new edit control)
544 o Removed obsolete source files
545 o Don't send focus related dialog messages if control
546 already has focus. (Win32Dialog::setFocus)
547
548 2002-12-17: Sander van Leeuwen <sandervl@innotek >
549 - KERNEL32: o CreateProcess bugfix (heap corruption)
550 - USER32: o Merged dialog directory functions with latest Rewind
551 (fixes double drive string in folder dialog of some
552 Installshield installers)
553
554 2002-12-13: Sander van Leeuwen <sandervl@innotek >
555 - USER32; o Query loader path for WPS object creation
556 - KERNEL32: o Changes for loader path query & default setup
557
558 2002-12-12: Sander van Leeuwen <sandervl@innotek >
559 - KERNEL32: o Fixed wrong access of global memory map critical section
560 (custom builds only)
561 - USER32: o Fixed wrong access of global window handle critical section
562 (custom builds only)
563 o Changed all system menu resources; manually append
564 Odin menu items when building the system menu.
565 (instead of removing them)
566
567 2002-12-11: Sander van Leeuwen <sandervl@innotek >
568 - KERNEL32: o Added custom build function to disable loading of LX dlls
569 (safety precaution)
570 o 16 bits loader command line changes
571
572 2002-12-10: Sander van Leeuwen <sandervl@innotek >
573 - KERNEL32: o Closing a root key should just return success
574 (matters for custom builds)
575
576 2002-12-05: Knut St. Osmundsen <bird@anduin >
577 - WIN32K: o Finially got around fixing the bug.
578 (Was d32init.c, pach <= 0x10000, where compiler did signed
579 comparision instead of unsigned. (pach is > 0xfff00000))
580 o Recreate the symbol database. Had to remove some kernels
581 because of size problems.
582
583 2002-12-05: Sander van Leeuwen <sandervl@innotek >
584 - COMCTL32: o Put back old tab height calculation code. Fixes the tabs
585 in certain applications.
586
587 2002-12-05: Platon Fomichev <platon@innotek >
588 - USER32: o Changed system menu in OS/2 GUI mode
589 o Support the standard system menu hotkeys in OS/2 GUI mode
590
591 2002-12-04: Sander van Leeuwen <sandervl@innotek >
592 - DDRAW: o Cleanup
593 o Post resize message in SetCooperativeLevel instead of
594 calling SetWindowPos. Workaround for recursive SetWindowPos
595 calls in USER32.
596 - DINPUT: o Check initial cursor position in relative mode when acquiring
597 the mouse
598 - USER32: o Logging changes
599 o Change required for postponed DDRAW resize
600
601 2002-12-03: Sander van Leeuwen <sandervl@innotek >
602 - KERNEL32: o CreateFile/OpenFile: convert file name to long if in hashed 8.3 format.
603 o Added function to override loader names (pe/pec/w16odin)
604
605 2002-12-02: Platon Fomichev <platon@innotek >
606 - OLE32: o Removed stupid wait in STUBMGR_Start. Blocks PM for two seconds.
607
608 2002-12-02: Sander van Leeuwen <sandervl@innotek >
609 - KERNEL32: o Convert command line from OS/2 to Windows codepage
610
611 2002-11-29: Sander van Leeuwen <sandervl@innotek >
612 - USER32: o Add ODIN_SetSyscolors to override system colors without
613 forcing a desktop repaint
614 o Don't call SetSysColors in WGSS anymore. That call updates
615 system colors in PM.
616 o Always use the internal color table in GetSysColor; don't
617 call WGSS
618
619 2002-11-28: Sander van Leeuwen <sandervl@innotek >
620 - KERNEL32: o Make sure the stack is properly aligned
621 We're asking for problems if our stack start near a 64kb
622 boundary. Some OS/2 thunking procedures can choke on misaligned
623 stack addresses. (workaround; not a real fix)
624
625 2002-11-27: Sander van Leeuwen <sandervl@innotek >
626 - USER32: o Fixed CopyBitmap (CopyImage, IMAGE_BITMAP)
627
628 2002-11-27: Platon Fomichev <platon@innotek >
629 - WININET: o Some updates (should resync with Wine!)
630
631 2002-11-26: Sander van Leeuwen <sandervl@innotek >
632 - GDI32: o Added debug wrappers for all exports
633 - USER32: o Handle icon masks with different line alignment. CreateBitmap
634 assumes the optimal alignment, so we must convert them properly.
635 (no collate icon in printer dialog)
636
637 2002-11-22: Platon Fomichev <platon@innotek >
638 - USER32: o Static control fix: do not destroy old icon when it is replaced.
639
640 2002-11-21: Sander van Leeuwen <sandervl@innotek >
641 - GDI32: o Fixed bugs in MMX RGB 555<->565 conversion (leftovers)
642
643 2002-11-20: Sander van Leeuwen <sandervl@innotek >
644 - USER32: o Ignore size changes when a window is minimized; save them
645 for restore.
646
647 2002-11-18: Sander van Leeuwen <sandervl@innotek >
648 - KERNEL32: o Added support for renaming of exported functions.
649 (to resolve duplicate name exports in custom build dlls)
650 - GDI32: o DeleteObject can delete DC handles (thanks to Dietrich Teickner
651 for spotting this bug)
652
653 2002-11-13: Sander van Leeuwen <sandervl@innotek >
654 - SETUPAPI, RICHED32:
655 o Wine resync
656
657 2002-11-12: Sander van Leeuwen <sandervl@innotek >
658 - COMCTL32: o Wine resync (toolbar, propsheet, imagelist)
659 - OLE32, OLEAUT32:
660 o Wine resync
661
662 2002-11-12: Dietrich Teickner <Dietrich_Teickner@t-online >
663 - COMCTL32: o Wine resync (comboex)
664
665 2002-11-05: Platon Fomichev <platon@innotek >
666 - GDI32: o FillRgn fix for DIB sections
667 - USER32: o SetMenu bugfix
668
669 2002-11-04: Platon Fomichev <platon@innotek >
670 - GDI32: o CreateCompatibleDC workaround for WGSS bug (current position
671 of new DC must be (0,0))
672 - USER32: o Update for static control
673
674 2002-10-29: Sander van Leeuwen <sandervl@innotek >
675 - COMCTL32: o Wine resync (header, comboex, flatsb, hotkey, imagelist,
676 pager, propsheet, rebar, tab, toolbar, tooltips, updown)
677 - COMDLG32: o Write default printer name to win.ini (needed for printer
678 dialogs)
679
680 2002-10-28: Sander van Leeuwen <sandervl@innotek >
681 - GDI32: o Workaround added for WGSS GetDIBits bug
682 - COMDLG32: o Use Wine printer dialog
683
684 2002-10-28: Platon Fomichev <platon@innotek >
685 - USER32: o Fix for WinPeekMsg bug (?); sometimes returns a message
686 we didn't ask for (filter)
687 o Fixed creation of dialog with CreateWindowExA/W
688 - GDI32: o StretchDIBits fix for partial blits & RGB conversion
689
690 2002-10-24: Platon Fomichev <platon@innotek >
691 - USER32: o TranslateWinMsg bugfix
692
693 2002-10-15: Platon Fomichev <platon@innotek >
694 - USER32: o Disable close button & close item in system menu for windows
695 with SC_NOCLOSE class style
696
697 2002-10-11: Sander van Leeuwen <sandervl@innotek >
698 - USER32: o SetParent bugfix; don't clear window id if parent is set to
699 0.
700
701 2002-10-10: Sander van Leeuwen <sandervl@innotek >
702 - KERNEL32: o Overlapped IO bugfixes for synchronization (typically seen
703 with heavy threaded apps on SMP systems)
704 o Fix for IP logging
705
706 2002-10-08: Dietrich Teickner <Dietrich_Teickner@t-online >
707 - SHELL32: o SHFileOperationA updates
708
709 2002-10-08: Sander van Leeuwen <sandervl@innotek >
710 - ODINCRT: o Updates for shared critical sections
711
712 2002-10-07: Sander van Leeuwen <sandervl@innotek >
713 - ODINCRT: o Minor updates for critical section functions
714
715 2002-10-07: Platon Fomichev <platon@innotek >
716 - IPHLPAPI: o GetAdaptersInfo bugfix
717 - KERNEL32: o CD ioctls: stop audio when seeking
718
719 2002-10-03: Sander van Leeuwen <sandervl@innotek >
720 - KERNEL32: o Added IP logging (define WIN32_IP_LOGGING in dbglog.cpp)
721 - IPLOG: o IP logging server
722
723 2002-10-03: Platon Fomichev <platon@innotek >
724 - KERNEL32: o Implemented IOCTL_CDROM_RAW_READ
725
726 2002-10-01: Sander van Leeuwen <sandervl@innotek >
727 - KERNEL32: o Be careful with stack usage in exception handler during
728 XCPT_GUARD_PAGE_VIOLATION.
729
730 2002-09-30: Sander van Leeuwen <sandervl@innotek >
731 - SHELL32: o Fixed crash when deleting a file in the file dialog
732 - KERNEL32: o Fixes for volume access
733
734 2002-09-30: Platon Fomichev <platon@innotek >
735 - COMDLG32: o File dialogs: if lpstrInitialDir is not a dir but a filename
736 skip it and use current directory
737
738 2002-09-27: Sander van Leeuwen <sandervl@innotek >
739 - KERNEL32: o GetFileSize must fail for drives
740 o Disable physical disk & volume access by default;
741 call EnablePhysicalDiskAccess to enable it (custom build)
742 o FindFirst/NextVolumeA fixes for ignoring LVM volumes
743
744 2002-09-26: Sander van Leeuwen <sandervl@innotek >
745 - KERNEL32: o OS/2 Physical partition names have base 1 (0 for win32)
746 o Convert ERROR_PATH_NOT_FOUND to ERROR_FILE_NOT_FOUND in
747 OSLibDosCreateFile
748 o IOCTL_DISK_GET_DRIVE_GEOMETRY fix for physical drive
749 o Fixed return value for FindNextVolumeMountPointA/W
750 o Fixed read & write for unmounted volumes; must update
751 current file position manually & check for boundaries
752 - WINMM: o Fixed debug wrapper logging
753 - USER32: o WM_ADJUSTFRAMEPOS:
754 The PM frame control changes the z-order of a child window
755 if it receives focus after a window has been destroyed
756 We can't let this happen as this breaks assumptions
757 elsewhere (e.g. GetNextDlgGroupItem)
758 By returning 0 here, we prevent the default frame handler
759 from messing things up. (one example is a group of radio buttons)
760
761 2002-09-24: Vit Timchishin <tivv@ukr >
762 - KERNEL32: o Fix for OSLibDosFreeMem
763
764 2002-09-24: Sander van Leeuwen <sandervl@innotek >
765 - BIN: o WGSS update from IBM
766 - IPHLPAPI: o GetNetworkParams: fixed completely broken code to fill in
767 DNS entries.
768
769 2002-09-19:
770 - MAKE, TOOLS/BIN/RM, FASTDEP:
771 o IPF and IPP support. They are built in the 'misc' pass.
772 See make\testcase\ipf.mak for usage example.
773 NB. FastDep does only C styled dependency generation
774 for .IPP files.
775 o Corrected bad .orc dependency generation.
776 o Added some shortcut rules to restart/skip passes.
777 o Fixed rm -R filename. Suppressed ERROR_PATH_NOT_FOUND msgs.
778
779 2002-09-19: Sander van Leeuwen <sandervl@innotek >
780 - ODINCRT: o Include new & delete in memory statistics
781
782 2002-09-19: Platon Fomichev <platon@innotek >
783 - USER32: o Put window on top of owner if owner is not in the foreground;
784 HWND_TOP forces the owner to the top as well
785 (window creation)
786
787 2002-09-18: Sander van Leeuwen <sandervl@innotek >
788 - KERNEL32: o Added code to print leaked heap memory
789
790 2002-09-18: Platon Fomichev <platon@innotek >
791 - USER32: o WM_MOUSEWHEEL update
792
793 2002-09-17: Platon Fomichev <platon@innotek >
794 - USER32: o Create invisible vertical scroller for all top-level windows
795 so the IBM wheel driver sends us WM_VSCROLL messages
796 o Added WM_MOUSEWHEEL message support
797
798 2002-09-16: Sander van Leeuwen <sandervl@innotek >
799 - COMCTL32: o LISTVIEW_ProcessLetterKeys bugfix
800 - GDI32: o Statistics fixes & print leaked gdi handles
801 when unloaded.
802 o Don't recycle handles too soon. That makes it more difficult
803 to interpret the logfile.
804
805 2002-09-16: Platon Fomichev <platon@innotek >
806 - USER32: o Combobox fix to update selected item when the control is rolled
807 up
808
809 2002-09-15: Dietrich Teickner <Dietrich_Teickner@t-online >
810 - SHELL32: o Wine resync for shfileop.c
811
812 2002-09-14: Sander van Leeuwen <sandervl@innotek >
813 - KERNEL32: o WaitForSingleObject, (Msg)WaitForMultipleObjects:
814 If dwTimeout is not 0 and smaller than 20 ms, then
815 temporarily change thread priority to time critical to
816 make sure we don't get a late timeout.
817 (CLOCKSCALE=4 in config.sys also improves timeout responds)
818
819 2002-09-14: Yuri Dario <mc6530@mclink >
820 - DSOUND: o Load MMPM2 (MDM.DLL) on demand
821
822 2002-09-12: Platon Fomichev <platon@innotek >
823 - USER32: o Translate PM WM_VSCROLL to WM_MOUSEWHEEL messages (currently
824 only dispatched to (dinput) hook handler)
825
826 2002-09-12: knut st. osmundsen <bird@anduin >
827 - MAKE: o Corrected bug in process which made it put the libraries in
828 the wrong place.
829 o Always stamp the .def file before linking so that build level
830 info will be up to date.
831 o Added some shortcuts rules for lazy programmers:
832 * pass[1-6] for starting from a given pass.
833 * quick for only doing lib, executable and publish.
834
835 2002-09-10: knut st. osmundsen <bird@anduin >
836 - TOOLS/VSLICK:
837 o Added kdev.e. Odin32.e with more goodies like an 'Extra' menu.
838
839 2002-09-05: Sander van Leeuwen <sandervl@innotek >
840 - USER32: o Caret bug in edit control WM_ERASEBKGND handler (hidden,
841 but not shown again)
842 o Removed obsolete hack in CreateCaret
843
844 2002-09-05: Dietrich Teickner <Dietrich_Teickner@t-online >
845 - COMDLG32: o Corrected translation of IDS_TODESKTOP resource string
846
847 2002-09-04: knut st. osmundsen <bird@anduin >
848 - FASTDEP: o Corrected bug in caching. Didn't force rescan of files when
849 a dependant file wasn't present any more.
850 o Corrected makefile. No memory debug.
851 - CMDQD: o Corrected makefile.
852
853 - Tools/DailyBuilds:
854 o Changed odin32env.cmd to use buildenv.cmd to set up the
855 desired build environment.
856 o Changed odin32clean.cmd to use tools\bin\rm.exe.
857 - MAKE: o Corrected CC_NO_DBGMEM check for vac3xx.
858
859 2002-09-03: Sander van Leeuwen <sandervl@innotek >
860 - USER32: o Cleaned up clipboard code
861
862 2002-09-03: Platon Fomichev <platon@innotek >
863 - USER32: o Fix for Ctrl-Break
864
Note: See TracBrowser for help on using the repository browser.