source: trunk/changelog@ 10137

Last change on this file since 10137 was 10137, checked in by sandervl, 22 years ago

* empty log message *

File size: 35.4 KB
Line 
1/* $Id: changelog,v 1.2594 2003-06-03 11:59:15 sandervl Exp $ */
2
3 2003-06-03: Sander van Leeuwen <sandervl@innotek >
4 - USER32: o Don't search for keyboard accelerators in the default
5 WM_SYSKEYDOWN handler. That's already done in TranslateAccelerator
6 o Send focus messages when we receive the undocumented WM_FOCUSCHANGED
7 PM message. Removes the need for the ugly hack to deal with
8 nested focus changes.
9
10 2003-06-02: Sander van Leeuwen <sandervl@innotek >
11 - KERNEL32: o CreatePipe: create unique named pipe
12 o CreateNamedPipe: fixed return value + wrong check for duplex pipe
13
14 2003-05-29: Platon Fomichev <stauff@innotek >
15 - COMCTL32: o Listview selection draw code was not ok with OS/2 look
16
17 2003-05-28: Platon Fomichev <stauff@innotek >
18 - COMCTL32: o OWNERDRAW fixes for ListView control
19
20 2003-05-27: Sander van Leeuwen <sandervl@innotek >
21 - USER32: o Do not send WM_STYLECHANGING/ED messages when the scrollbar
22 control is shown or hidden.
23 o PeekMessage fix (regression from 5-16)
24
25 2003-05-26: Sander van Leeuwen <sandervl@innotek >
26 - COMCTL32: o Use the new resources from Wine.
27
28 2003-05-26: Platon Fomichev <stauff@innotek >
29 - COMCTL32: o Listview selection draw code was incomplete due to resync.
30
31 2003-05-26: Platon Fomichev <stauff@innotek >
32 - COMCTL32: o Patrick's 2001 fixes broke too much. Stay with ReWind for now.
33
34 2003-05-23: Sander van Leeuwen <sandervl@innotek >
35 - KERNEL32: o ClearCommError: lpdwError is allowed to be NULL
36
37 2003-05-16: Sander van Leeuwen <sandervl@innotek >
38 - USER32: o Use our fast critical sections instead of OS/2 mutex semaphores
39 in the timer code.
40 o Handle WM_(SYS)TIMER timer calls in DispatchMessageA/W.
41 We previously called timer handlers when we received WM_TIMER
42 from PM. That's not correct. These messages must be returned
43 by Get/PeekMessage. The handler will not be called if the
44 timer message is not dispatched. (verified in NT4)
45
46 2003-05-16: Platon Fomichev <stauff@innotek >
47 - USER32: o Eat first WM_MOUSEMOVE while menu tracking like windows does
48 to prevent 'auto-clicking' on popup menus that appear in the
49 area of first mouse-click
50
51 2003-05-15: Sander van Leeuwen <sandervl@innotek >
52 - USER32: o Window creation: updated the coordinate fix code with the latest Rewind version
53 o ReleaseDC: always verify window associated with DC
54 - COMCTL32: o Complete resync with latest Wine (except draglist)
55 o Implemented LVM_APPROXIMATEVIEWRECT for LVS_REPORT controls
56 (needed to get rid of a crash; very likely to be incorrect)
57
58 2003-05-14: Sander van Leeuwen <sandervl@innotek >
59 - GDI32: o DIB section: do not fetch more colors from a bitmap header than
60 biClrUsed (if != 0)
61 o GetDIBits: save and restore negative height & log failure
62 - USER32: o Do not send any SetWindowPos related messages if the state
63 of the window doesn't change.
64
65 2003-05-12: Sander van Leeuwen <sandervl@innotek >
66 - KERNEL32: o _lopen: wrong parsing of mode parameter
67 (only found now due to CreateFile changed with dwDesiredAccess)
68
69 2003-05-07: Sander van Leeuwen <sandervl@innotek >
70 - USER32: o Added more members to the TEB structure
71
72 2003-05-06: Sander van Leeuwen <sandervl@innotek >
73 - KERNEL32: o Fixed closing of parent file handle by duplicate memory map
74 o Compare file names instead of handles when checking for
75 duplicate file maps.
76 - USER32: o ReleaseDC check if hwnd parameter is correct (WindowFromDC(hdc))
77 o Messagebox: Wrong ReleaseDC call
78
79 2003-05-06: knut st. osmundsen <bird-odin-spam@anduin >
80 - KERNEL32: o Corrected the handling of OF_PARSE in OpenFile.
81
82 2003-05-05: Sander van Leeuwen <sandervl@innotek >
83 - KERNEL32: o Handle files opened with 0 for dwDesiredAccess seperately.
84 Those handles can only be used with a limited nr of functions
85 (such as GetFileType/Size/Time)
86 - IPHLPAPI: o Implemented GetIpAddrTable, GetIfTable & GetFriendlyIfIndex
87
88 2003-05-02: Sander van Leeuwen <sandervl@innotek >
89 - USER32: o Keep track of all open window DCs
90 o During WM_VRNENABLED we must query the visible region
91 of all open DCs to ensure that GPI updates the visible
92 region (e.g. when a window has moved).
93 A bug in PM/GPI causes open DCs to get out of sync when
94 moving windows with full window drag enabled.
95 (without full window drag there is no such problem due
96 to the use of LockWindowUpdate)
97
98 2003-04-30: Platon Fomichev <stauff@innotek >
99 - USER32: o In WM_PARENTNOTIFY correctly map window coordinates for each
100 window we send this message to.
101 Correctly finish PM minimize sequence.
102 Correctly switch titlebar higlight on activate/deactivate.
103
104 2003-04-30: Dietrich Teickner <Dietrich_Teickner@t-online >
105 - SHLWAPI: o Fixed PathIsUrlA/W
106 - KERNEL32: o Changed dll renaming to include extension if it's not .dll
107 - ODIN.INI: o Update for kernel32 change
108 (IMPORTANT: must update your odin.ini with this one or
109 delete the current file)
110
111 2003-04-27: Platon Fomichev <stauff@innotek >
112 - USER32: o Correctly finish PM restore procedure from minimized state.
113 o Use Stock brush for minimized icon fill when it is not
114 allocated.
115
116 2003-04-25: Sander van Leeuwen <sandervl@innotek >
117 - NTDLL: o Initialize kernel32 first (circular dependency between
118 kernel32 & ntdll)
119
120 2003-04-25: knut st. osmundsen <bird-odin-spam@anduin >
121 - USER32: o Fake window subclass FS bugfix.
122
123 2003-04-24: knut st. osmundsen <bird-odin-spam@anduin >
124 - USER32: o Fake window init bugfixes
125
126 2003-04-24: Sander van Leeuwen <sandervl@innotek >
127 - USER32: o EndDialog: Enable owner window regardless of whether it was
128 enabled before dialog creation. When the owner
129 is disabled and we hide the dialog, then PM switches
130 focus to another application. (hidden windows cannot
131 have focus)
132 o Win32BaseWindow::GetWindowFromOS2Handle: also check fake
133 windows)
134
135 2003-04-24: Platon Fomichev <stauff@innotek >
136 - USER32: o Fixed restore/maximize from minimized state for MDI windows.
137
138 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
139 - USER32: o Properties allocated from shared memory.
140 o Fake window updates.
141
142 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
143 - src/makefile:
144 o Build NTDLL too. (netlabs only)
145
146 2003-04-14: knut st. osmundsen <bird-odin-spam@anduin >
147 - USER32: o Implemented SW_SHOWDEFAULT.
148 - KERNEL32: o Changed initialization of StartupInfo to take the actual
149 values of the CreateProcess call (but for the strings).
150 (not complete)
151
152 2003-04-11: knut st. osmundsen <bird-odin-spam@anduin >
153 - USER32, KERNEL32, include/win/thread.h:
154 o Implemented WM_COPYDATA.
155
156 2002-04-11: Sander van Leeuwen <sandervl@innotek >
157 - USER32: o Send WM_WINDOWPOSCHANGED for ShowWindow(SW_SHOWWINDOW)
158 o Tool windows (WS_EX_TOOLWINDOW) don't have minimize or maximize
159 buttons. (testing shows this in NT4)
160 o Changed default hittest handler to check for WS_EX_TOOLWINDOW
161 (system menu & min/max buttons)
162 o MENU_TrackKbdMenuBar: check for WS_EX_TOOLWINDOW before using
163 the system menu.
164 o Display tool window titlebars in win32 style. They are supposed
165 to be thinner than standard PM titlebar controls.
166
167 2003-04-11: Dmitry Froloff <froloff@os2 >
168 - KERNEL32: o Console updates
169
170 2003-04-10: Platon Fomichev <stauff@innotek >
171 - MSVCRT : o MSVCRT updates, forwarders to stdcall functions, lots of funcs
172 now directly imported from NTDLL, resync with latest Wine
173 - EMXLIBS : o Added yet another wrapper for FS and added some funcs for new
174 msvcrt
175 - INCLUDE : o OS2SEL functions corrected for potential optimizing problems
176 in release build. (Bug found and corrected by Dietrich)
177
178 2002-04-09: Sander van Leeuwen <sandervl@innotek >
179 - KERNEL32: o Unmap memory view when deleting PE dll object.
180 (problem found by Dietrich)
181
182 2003-04-09: Platon Fomichev <stauff@innotek >
183 - COMCTL32: o Due to flaw in cdecl implementation of GCC temporary
184 correctly import _wtoi func from NTDLL
185 - EMXLIBS: o Possible endless loop in OS2FS replacement funcs
186 (problem found by Dietrich)
187
188 2003-04-08: Platon Fomichev <platon@innotek >
189 - USER32: o Treat LBUTTON press different from others in scrollbar. (WineX resync)
190
191 2002-04-08: knut st. osmundsen <Knut.Osmundsen@innotek >
192 - COMDLG32: o Corrected default printer init. It was crashing with big
193 printer setups and not handling multiple drivers per device
194 correctly.
195
196 2002-04-08: Sander van Leeuwen <sandervl@innotek >
197 - USER32: o Menu control: do not paint default menu item strings in bold
198 if in OS/2 GUI mode
199
200 2003-04-04: Platon Fomichev <platon@innotek >
201 - NTDLL: o Massive update. NTDLL internal tests, almost all
202 string and conversion funcs. Corrected and beautified .def file
203 - DOC: o Updated GCCBuildInstructions.txt for GCC 3.2.1
204
205 2003-04-03: Sander van Leeuwen <sandervl@innotek >
206 - WINMM: o Different method for detecting DirectAudio (uniaud, sblive, c-media)
207 o Added custom build function to disable DirectAudio (always use DART)
208 o Waveout (DART): handle underrun properly (next buffer write
209 and position after continueing)
210
211 2002-04-02: knut st. osmundsen <bird-odin-spam@anduin >
212 - WIN32K: o Win32VersionValue in OptionalHeader.
213
214 2002-04-02: Yuri Dario <mc6530@mclink >
215 - INCLUDE, GDI32, USER32, KERNEL32:
216 o Corrected & changed headers + source updates
217 - USER32: o Button: WM_SETTEXT fix
218
219 2003-04-02: Platon Fomichev <platon@innotek >
220 - INCLUDE, KERNEL32:
221 o Corrected HFILE definition as it is in Wine and in Win2k +
222 header updates.
223 - INCLUDE\EMXRUNTIME:
224 o Modified EMX headers
225 - LIB\EMXSUPPORT:
226 o Modified EMX libraries
227
228 2003-04-01: Sander van Leeuwen <sandervl@innotek >
229 - GDI32: o Fix for partial dibsection resyncs
230
231 2003-04-01: Platon Fomichev <stauff@innotek >
232 - USER32: o Functions for setting custom frame/cd/window class names
233
234 2003-03-31: Dietrich Teickner <Dietrich_Teickner@t-online >
235 - SHELL32: o Shell file operations update
236
237 2003-03-31: Platon Fomichev <platon@innotek >
238 - KERNEL32: o Added vsnprintfW/snprintfW funcs for syncing with latest
239 wine NTDLL
240
241 2003-03-31: knut st. osmundsen <bird-odin-spam@anduin >
242 - PE2LX/WIN32K:
243 o Custombuild feature for excluding dlls. Cleanups.
244 o Option for making all object RW file.
245 - KERNEL32: o Made Pe2Lx'ed DLLs work.
246
247 2003-03-28: Sander van Leeuwen <sandervl@innotek >
248 - USER32: o Removed changes for window tracking (move/size) with full
249 window dragging enabled (2003-03-27)
250
251 2003-03-27: Sander van Leeuwen <sandervl@innotek >
252 - USER32: o Don't change focus when processing mouse button message if
253 the top parent is a fake window
254 o Changes for window tracking (move/size) with full window
255 dragging enabled
256 - KERNEL32: o Memory map updates
257
258 2003-03-26: Sander van Leeuwen <sandervl@innotek >
259 - KERNEL32: o WaitForSingleObject/(Msg)WaitForMultipleObject fixes to
260 prevent thread priorities from being accidentally boosted to
261 time critical
262
263 2003-03-22: Sander van Leeuwen <sandervl@innotek >
264 - USER32: o If an application doesn't validate the update region
265 while processing WM_PAINT, then we must remember it for
266 the next time.
267 Windows will only send a WM_PAINT once until another part of
268 the window is invalidated. Unfortunately PM keeps on sending
269 WM_PAINT messages until we validate the update region.
270 This affects UpdateWindow, RedrawWindow, GetUpdateRgn, GetUpdateRect,
271 BeginPaint and the next WM_PAINT message.
272
273 2003-03-20: Sander van Leeuwen <sandervl@innotek >
274 - USER32: o WindowFromPoint: only send WM_NCHITTEST to windows belonging
275 to the current thread
276 o Changes for fake windows. Moved them into a seperate C++ class
277 and overload some methods to correct the behaviour.
278
279 2003-03-18: Platon Fomichev <platon@innotek >
280 - USER32: o Shift/Ctrl/Alt+Numpad keys illegal behaviour. Generic numpad
281 keys like (/*-+) produced garbage.
282
283 2003-03-12: Platon Fomichev <stauff@innotek >
284 - USER32: o GetKeyState and GetAsyncKeyState fixes for numpad keyboard
285
286 2003-03-06: Sander van Leeuwen <sandervl@innotek >
287 - KERNEL32: o Don't change the stack alignment if the thread has less than
288 128 kb stack.
289 - WINMM: o Improved accuracy of waveIn/OutGetPosition. (use FPU to prevent
290 rounding errors)
291 o Added code to dump played wave data to disk (disabled by default)
292
293 2003-03-06: knut st. osmundsen <Knut.Osmundsen@innotek >
294 - KERNEL32: o The WIN32LOG_FILEBASE env.var. can be used to point the logfile
295 elsewhere. "%d.log" is added to the value.
296 o Print szLineExceptionType too in exception dump.
297 o Custombuild apis for entering and leaving Odin thread context.
298 o Added functions to quickly get the PID & TID
299
300 2003-03-05: knut st. osmundsen <bird-odin-spam@anduin >
301 - MAKE: o Experimental OTHERS variable.
302 o Full source path to compilers.
303
304 2003-03-05: Sander van Leeuwen <sandervl@innotek >
305 - WINMM: o timeBegin/EndPeriod: check for upper and lower boundaries
306 o waveoutGetPosition: return 0 if stream is not active (DART)
307 o waveinGetPosition: return 0 if stream is not active (DART)
308 o Don't print a warning for CALLBACK_NULL callbacks
309 o Added ODIN_waveInSetFixedBuffers, renamed SetFixedWaveBufferSize
310 to ODIN_waveOutSetFixedBuffers. Used to tell WINMM to use
311 the waveOutWrite buffer size for the DART buffers.
312 o Don't pause the wave stream if no buffers left to add. Let
313 DART detect the underrun condition.
314
315 2003-03-04: Platon Fomichev <stauff@innotek >
316 - USER32: o We did not pay attention to numlock state on numpad keyboard.
317
318 2003-03-03: Dietrich Teickner <Dietrich_Teickner@t-online >
319 - GDI32: o ExtTextOutA: copy string and force zero termination
320 - SHELL32: o Minor updates
321
322 2003-03-03: Sander van Leeuwen <sandervl@innotek >
323 - WSOCK32: o Removed wrong checks for invalid address parameters in
324 sendto & recvfrom
325
326 2003-03-01: Sander van Leeuwen <sandervl@innotek >
327 - KERNEL32: o ExitProcess: turn off hard errors & exception popups before
328 calling O32_ExitProcess (release build only)
329 o DeleteFile: when deleting a .lnk file, verify if it's a shell
330 link object file. if so, delete WPS object
331 o ODIN_DisableFolderShellLink added: disable object creation in
332 Odin folder. Desktop shortcuts will still be created as WPS
333 objects on the desktop.
334 o OSLibWinCreateObject: create shelllink file with WPS object id
335 - USER32/KERNEL32:
336 o Move OSLibWinCreateObject to KERNEL32
337 - SHELL32: o Shelllink: use kernel32 file functions instead of those from
338 the VAC crt
339
340 2003-02-28: Sander van Leeuwen <sandervl@innotek >
341 - SRC\makefile:
342 o Skip msvcrt & crtdll for now. Causes too many problems with
343 Odin builds.
344 - KERNEL32: o Fixed CreateProcessA regression (Lotus Notes)
345 o Check for invalid data while measuring the CPU speed. DosTmrQueryTime
346 isn't very reliable (on laptops).
347 o ExitProcess: don't remove our exception handler too early
348 o Map ERROR_PATH_NOT_FOUND (OS/2) to ERROR_INVALID_NAME
349 - WINMM: o Protect linked timer list with VMutex object.
350
351 2003-02-28: knut st. osmundsen <Knut.Osmundsen@innotek >
352 - MAKEFILES:
353 o New rule cleanall which tries to wipe out all the output.
354 o ODIN32_LIB and ODIN32_BIN is now the same for all the CCENVs.
355 (AFAIK we no longer try compile stuff with many compiles, but
356 stick too the once which are working, VAC3 or EMX that is.)
357 o Linenumbers in release mode.
358 o Pass full source file names to compilers so the debugger easier
359 will find the the right source.
360 o Defined STATIC_CRT in src/win32k/utils.
361 o Profiling: Link with kProfile.lib when DEBUG= and PROFILE=1.
362 Configured this for EMX targets too. (state: Experimental)
363
364 2003-02-28: Platon Fomichev <stauff@innotek >
365 - USER32: o Wrong checks on restoration point remembering. Maximizing
366 window from PM icon using keyboard or menu produced wrong
367 controls.
368
369 2003-02-27: Sander van Leeuwen <sandervl@innotek >
370 - KERNEL32: o VirtualAlloc: fixed handling of commit for a page range
371 that is not entirely reserved (contains committed pages)
372 o Don't call WinMessageBox in the unhandled exception filter as
373 that can hang PM.
374
375 2003-02-27: Platon Fomichev <stauff@innotek >
376 - USER32: o Illegal PM sequence of maximizing from icon state corrected.
377 Inter-thread controls change caused PM lockups. Rewrote
378 PM window frame controls manipulation procedure.
379
380 2000-02-27: Achim Hasenmueller <achimha@innotek >
381 - KERNEL32: o MoveFile: detect if source and target file names are on a
382 different drive and use DosCopy/DosDelete instead of DosMove
383 in this case.
384
385 2003-02-26: Sander van Leeuwen <sandervl@innotek >
386 - RICHED32: o Rewrote control; no longer creates a child Edit window as this
387 doesn't happen in Windows and breaks subclassing
388 o EM_CHARFROMPOS is different for RichEdit controls (lParam is
389 a POINTL pointer)
390 o Implemented EM_FINDWORDBREAK
391
392 2003-02-25: Sander van Leeuwen <sandervl@innotek >
393 - USER32: o Bugfix for WPS object creation
394 - RICHED32: o Added support for EM_SETCHARFORMAT (text & background color)
395 & EM_SETBKGNDCOLOR.
396
397 2003-02-24: Sander van Leeuwen <sandervl@innotek >
398 - WS2_32: o Implemented non-overlapped WSARecv & WSASend.
399 - WSOCK32: o check for local host name in gethostbyname. if identical,
400 then use "localhost" instead
401 - KERNEL32: o GetFullPathNameA: don't change the input string
402 o Added ODIN_IsWin32App export to determine whether an app
403 is a win32 or os2 binary.
404 - USER32: o Changes for creating WPS objects (win32/os2 app)
405 o Added function to convert an icon group in memory
406 - SHELL32: o Convert win32 icon file to os2 format when creating a shell link.
407
408 2003-02-23: knut st. osmundsen <bird@anduin >
409 - TOOLS/ALIASDEF:
410 o A tool for generating alias records from an .def file.
411 Something I wrote will playing with NTDLL here.
412
413 2003-02-22: Sander van Leeuwen <sandervl@innotek >
414 - WS2_32: o Added WSARecv(From) & WSASend(To) stubs
415
416 2003-02-22: Platon Fomichev <stauff@innotek >
417 - USER32: o Restoring maximized window from iconic state caused window
418 frame controls to behave badly. General out-of-sync problems
419 with frame controls. Invisibility of frame controls after
420 lots of minimizing/restoring.
421
422 2003-02-22: Dietrich Teickner <Dietrich_Teickner@t-online >
423 - SHELL32: o Shell file operation updates
424
425 2003-02-20: knut st. osmundsen <Knut.Osmundsen@innotek >
426 - KERNEL32: o Added custombuild API for registering a callback for LX Dll
427 loading thru LoadLibrary*().
428
429 2003-02-18: Sander van Leeuwen <sandervl@innotek >
430 - KERNEL32: o Touch last stack page using ESP. (just in case)
431 o Cleaned up memory map code.
432
433 2003-02-17: Sander van Leeuwen <sandervl@innotek >
434 - KERNEL32: o FindFirstFile: return ERROR_FILE_NOT_FOUND if DosFindFirst
435 returns ERROR_PATH_NOT_FOUND
436 - USER32: o Single Alt down + up always generates WM_SYSKEYUP; reset
437 iMenuSysKey on WM_KEYUP, so the system menu isn't accidentally
438 activated.
439
440 2003-02-16: Sander van Leeuwen <sandervl@innotek >
441 - USER32: o ToAscii: fixed wrong checks for VK_SHIFT/CONTROL/MENU
442 o Fixed broken implementation of GetKeyState, GetAsyncKeyState
443 and GetKeyboardState
444 o Do not translate WM_KEYUP to WM_SYSKEYUP if AltGr released
445 and KC_LONEKEY flag is set. (only for Alt)
446 o GetKeyboardState, GetKeyState, GetAsyncKeyState:
447 pretend left Ctrl key is pressed if AltGr down.
448 - PMKBDHK: o Special handling of AltGr key. Must send Ctrl key messages
449 like Windows.
450
451 2003-02-14: Dietrich Teickner <Dietrich_Teickner@t-online >
452 - SHELL32: o Shell file operation updates
453
454 2003-02-13: Sander van Leeuwen <sandervl@innotek >
455 - USER32: o Handle SetFocus(0) correctly: keystrokes are converted into
456 WM_SYSKEYDOWN/(WM_SYSCHAR)/WM_SYSKEYUP messages
457 o DrawFocusRect: conflict between SetROP2(R2_XORPEN) and
458 SetBkMode(TRANSPARENT); commenting out the latter for now.
459 - SHELL32: o Control panel Wine resync
460 - KERNEL32: o Added ODIN_SetTIBSwitch function to override TIB selector
461 switching.
462 o Forward RtlZero/Move/FillMemory to ntdll
463 - NTDLL: o Cleaned up
464
465 2003-02-11: Sander van Leeuwen <sandervl@innotek >
466 - USER32: o When a window is activated by a mouse click, we must set
467 focus to the client window (and not the frame!).
468 o GetSysColor: always return cached colors
469
470 2003-02-10: Sander van Leeuwen <sandervl@innotek >
471 - KERNEL32: o Touch all stack pages we skip in the out of stack workaround for
472 16 bits code. Jumping over the guard page causes a protection
473 violation exception.
474 - USER32: o EnumThreadWindows: must return windows in Z-order
475 (experiments show EnumThreadWindows in NT4 behaves like this)
476
477 2003-02-07: Sander van Leeuwen <sandervl@innotek >
478 - DDRAW/NTDLL:
479 o Rename resource directory
480 - USER32: o Don't save position (for restore) in SetWindowPos if window
481 is minimized .
482
483 2002-02-06: Dietrich Teickner <Dietrich_Teickner@t-online >
484 - USER32: o Edit control: fixed heap corruption in undo buffer
485
486 2003-02-06: Sander van Leeuwen <sandervl@innotek >
487 - ODINCRT: o Rewrote critical sections to be safe on SMP systems
488 (previous implementation had one flaw that happened
489 to be triggered often on my SMP machine)
490 - USER32: o Edit control: Always kill the timer if in captured state.
491 The app can call ReleaseCapture before we get the WM_LBUTTONUP
492 message.
493 o Send WM_QUERYNEWPALETTE when a window receives focus
494 o Translate WM_REALIZEPALETTE into WM_PALETTECHANGED
495 - GDI32: o Must manually correct y coordinates for DIB section blit since
496 we reset the y inversion back to 0.
497 (subtract twice the viewport & windows origin y)
498 o CreateDIBSection: don't get palette from DC if bitmap bits provided
499
500 2003-02-05: Sander van Leeuwen <sandervl@innotek >
501 - KERNEL32: o Check ESP when calling the entrypoint of a newly created thread.
502 If close to a 64kb boundary, adjust it. Some ancient 16 bits
503 code will crash if there's not enough stack left.
504
505 2003-02-04: Sander van Leeuwen <sandervl@innotek >
506 - KERNEL32: o Support DuplicateHandle for threads
507 o Fixed command line parsing regression
508 - DDRAW: o FS corruption in SetCooperativeLevel
509
510 2003-02-02: Sander van Leeuwen <sandervl@innotek >
511 - INCLUDE\makefiles:
512 o Define STATIC_CRT for all exe targets
513
514 2003-01-30: Sander van Leeuwen <sandervl@innotek >
515 - KERNEL32: o CreateProcess changes for parsing the application name
516 and command line strings
517
518 2003-01-29: Sander van Leeuwen <sandervl@innotek >
519 - USER32: o OS/2 Look & Feel is now default
520 o Use OS/2 colors again in OS/2 L&F mode
521
522 2003-01-28: Sander van Leeuwen <sandervl@innotek >
523 - USER32: o Don't use DrawFocusRect from WGSS anymore
524 - GDI32: o Fixes for InternalTextOutA without y-inversion (not activated)
525
526 2003-01-27: Platon Fomichev <platon@innotek >
527 - INCLUDE: o Illegal calling convention specified for _System calling
528 convention in headers for GCC. Bugs in ASM code for SetFS
529 RestoreFS.
530 - NTDLL: o In C++ files specify extern "C" for _System calling convention
531 as well. Affected _DLL_InitTerm
532
533 2003-01-23: knut st. osmundsen <bird-odin-spam@anduin.net>
534 - TOOLS\COMMON, TOOLS\WRC\U:
535 o Define STATIC_CRT so wrapper headers doesn't kick in.
536
537 2003-01-23: Sander van Leeuwen <sandervl@innotek >
538 - INCLUDE\*.mk:
539 o Don't use include\incl_vac for statically linked targets
540 (e.g. tools)
541 - ODINCRT: o Added wrappers for new & delete operators
542 - ODINPROF, IPLOG, OLE32\REGSVR32;
543 o Link with static CRT library
544 - MAKE\setup.mak:
545 o Only add include\incl_vac if not building an odin32 app
546
547 2003-01-23: Platon Fomichev <platon@innotek >
548 - DOC: o Added build instructions for GCC
549 - NTDLL: o Made initntdll a C file to remove C++ GCC stuff for now
550 and added RtlBitmap support from Wine.
551 - INCLUDE: o Correced odinlx.h header - problem while compiling with
552 C compiler.
553
554 2003-01-22: Sander van Leeuwen <sandervl@innotek >
555 - ODINCRT: o Renamed wrapper functions
556 - INCLUDE\incl_vac:
557 o Changed VAC headers to rename memory and file functions
558 (those that change FS when called)
559 - MAKE, INCLUDE\*.mk:
560 o Add include\incl_vac first to include path (/I)
561 - KERNEL32: o Removed WriteLogError
562
563 2003-01-22: Platon Fomichev <platon@innotek >
564 - NTDLL: o Dll load/unload changes
565
566 2003-01-21: Sander van Leeuwen <sandervl@innotek >
567 - DDRAW: o Removed dependency on dive.dll. Load it on demand.
568 - USER32: o Moved debug wrapper for DDE to dde.cpp
569
570 2003-01-19: Sander van Leeuwen <sandervl@innotek >
571 - KERNEL32: o Only load LVM.DLL when we actually need it.
572 o CreateProcess bugfix for thread id if launched directly
573 o CreateFile returns ERROR_ALREADY_EXISTS if file not found
574 and CREATE_NEW
575 o Check and correct process type in thread wrapper. WinCreateMsgQueue
576 fails for non-PM apps. We set it to PM in the VIO loader, but
577 apparently it can be changed back.
578
579 2003-01-18: Sander van Leeuwen <sandervl@innotek >
580 - KERNEL32: o FindFirstFile must return ERROR_FILE_NOT_FOUND when
581 the specified file or directory isn't present.
582 (OS/2 returns ERROR_NO_MORE_FILES)
583
584 2003-01-16: Sander van Leeuwen <sandervl@innotek >
585 - KERNEL32: o Fixed heap corruption in CreateProcess (with current dir)
586 - USER32: o Only the combo bitmap header is wrong; the others are fine
587 (regression from 2003-01-05)
588
589 2003-01-16: Platon Fomichev <platon@innotek >
590 - NTDLL: o Changes for building dll with GCC
591
592 2003-01-15: Platon Fomichev <platon@innotek >
593 - MSVCRT: o Updates
594 - VERSION: o Don't use crtdll
595 - INCLUDE: o Updates for GCC builds
596
597 2003-01-14: Sander van Leeuwen <sandervl@innotek >
598 - WINMM: o Delete all wave object on unload
599 o Fix linked list synchronization
600
601 2003-01-13: Sander van Leeuwen <sandervl@innotek >
602 - KERNEL32: o Don't allocate selectors anymore. Allocate tiled memory
603 and call Dos32FlatToSel.
604 o Get default stack size from PE header.
605 o Thread handles not closed properly.
606
607 2003-01-12: Sander van Leeuwen <sandervl@xs4all >
608 - KERNEL32: o Ported QueryDosDeviceA/W from Rewind
609 Return all valid drive letters in QueryDosDeviceA/W(NULL)
610 Return full device name for drive letters
611 o Implemented IOCTL_SCSI_GET_CAPABILITIES
612 o Do not fail CDIO init if media not present
613
614 2003-01-10: Sander van Leeuwen <sandervl@innotek >
615 - KERNEL32: o Don't close handle in CloseHandle if HANDLE_FLAG_PROTECT_FROM_CLOSE
616 flag set.
617 o Implemented Set/GetHandleInformation
618 o CreateFile: create handles that are not inherited by child
619 processes by default
620 Only enable inheritance if specified in security struct
621 o Create(Named)Pipe: default = not inherited by child processes
622 Only enable inheritance if specified in security
623 struct.
624 o DuplicateHandle; set inheritance flag with SetHandleInformation
625 o CreateProcess: support for setting stdin/out/err handles
626 of child process
627 o PeekNamedPipe: - return ERROR_BROKEN_PIPE when used for unnamed
628 pipes (which is not allowed in OS/2)
629 (workaround)
630 - USER32: o ScrollDC bugfix; must convert rectangle returned by GetClipBox
631 to device coordinates
632
633 2003-01-10: Platon Fomichev <platon@innotek >
634 - MSVCRT: o Updates
635 - CRTDLL: o Wine port (forwarder dll to msvcrt)
636
637 2003-01-10: Herwig Bauernfeind <herwig.bauernfeind@aon >
638 - ODINBUG: o Updated to version 0.5.8
639
640 2003-01-08: Sander van Leeuwen <sandervl@innotek >
641 - KERNEL32: o SetTimeZoneInformation: save info in registry:
642 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
643 o GetTimeZoneInformation: read info from registery if present;
644 otherwise call WGSS
645 o RegQueryValue(Ex)W: workaround to return bytes for strings
646 must always be executed when lpcbData != NULL.
647
648 2003-01-07: Sander van Leeuwen <sandervl@innotek >
649 - USER32: o Convert color masks to b&w in CreateIconIndirect
650 - RICHED32: o Don't forward WM_NCCALCSIZE to Edit control or else the
651 richedit parent's client area is resized. We already
652 resize the Edit child in the WM_SIZE handler.
653 o Wrong call to ctordtorTerm; removed it and ctordtorInit
654 since there's no C++ code in that dll anyway.
655 - ODININST: o Parse TZ environment variable and save timezone information
656 to the registry. (default is CET if not found)
657
658 2003-01-06: Sander van Leeuwen <sandervl@innotek >
659 - WSOCK32: o Better method to cancel all async requests in WSACleanup
660 - USER32: o Invalidate window when it's resized and SWP_NOCOPYBITS
661 is specified.
662 o Fixed icon leak in IconForWindow method (call LoadImageA
663 with LR_SHARED flag to reuse icons)
664
665 2003-01-06: Platon Fomichev <platon@innotek >
666 - ConfigureGCC.cmd,
667 INCLUDE\win\msvcrt,
668 INCLUDE\emx makefiles
669 MSVCRT:
670 o Wine port of MSVCRT (build with GCC)
671
672 2003-01-05: Sander van Leeuwen <sandervl@innotek >
673 - KERNEL32: o Added ODIN_SetDllLoadCallback; install a dll load hook
674 that's called as soon as all exports are processed
675 (so before any code is executed that can use the dll)
676 o Added ODIN_SetProcAddress; override a name or ordinal export
677 - USER32: o Corrected wrong bitmap headers in resources
678 o Added workaround for handling black & white cursors
679
680 2002-01-05: Dietrich Teickner <Dietrich_Teickner@t-online >
681 - USER32: o Return MA_NOACTIVATE in listbox WM_MOUSEACTIVATE handler.
682 (apparently not necessary anymore in Wine; so probably
683 caused by something else)
684
685 2003-01-04: Sander van Leeuwen <sandervl@innotek >
686 - USER32: o Corrected drawing of menubar in OS/2 L&F mode (when highlighted)
687 o Fixed handling of single ALT to select menu
688 o Use different color for highlighted menus (OS/2 L&F)
689 - GDI32: o Removed broken handling of TA_RIGHT in TextOut
690 o Flip bitmap in GetDIBits if height is negative
691 o Only return bitfield data in GetDIBits if compression set
692 to BI_BITFIELDS (and lpvBits is not NULL)
693
694 2003-01-03: Sander van Leeuwen <sandervl@innotek >
695 - USER32: o Merged Rewind menu control
696 o Fixed GetSystemMetrics(SM_CXMENUCHECK); should be 13
697 o Always use windows system colors (even in OS/2 L&F mode)
698
699 2002-01-03: Dietrich Teickner <Dietrich_Teickner@t-online >
700 - KERNEL32: o Convert timezone names in Set/GetTimeZoneInformation as
701 WGSS expects/returns ascii strings instead of unicode.
702
703 2003-01-02: Sander van Leeuwen <sandervl@innotek >
704 - KERNEL32: o Set the codepage of the message queue for each new thread
705 that is created. (done for the main thread in user32)
706 - USER32: o Fix for composite keyboard character translation
707 (e.g. ^ on german keyboards)
708 o SystemParametersInfoA fix for SPI_GETNONCLIENTMETRICS in
709 OS/2 L&F (font height must be negative)
710 o Deactivate window when hiding it to force PM to switch focus.
711 (Note: might cause regressions!)
712 o Fixed behaviour of SetFocus(NULL); should return the current
713 focus window.
714
715 2003-01-01: Sander van Leeuwen <sandervl@innotek >
716 - USER32: o Fixes for windows with an iconless class and WS_EX_DLGMODALFRAME
717 style. (they shouldn't have a system menu)
718 (either right after creation or when the app add this extended
719 style later on)
720 o Remove minimize or maximize controls when the app requests it
721 (OS/2 GUI mode)
722 - GDI32: o Cleaned up SetDIBitsToDevice
Note: See TracBrowser for help on using the repository browser.