source: trunk/changelog@ 21965

Last change on this file since 21965 was 21965, checked in by dmik, 14 years ago

Release 0.8.3.

File size: 74.3 KB
Line 
10.8.3 (2012-02-07)
2------------------
3 - Add bldlevel info to all Odin DLLs and EXEs.
4 - Fix "Memory allocation failure" error when loading some Win32 EXEs with
5 PE/PEC.
6 - user32: Implement GetComboBoxInfo() needed for some apps.
7 - Fix crashes in CreateIconIndirect()/CreateIconFromResource()/LoadImage()
8 (seen in e.g. WinRAR).
9 - wgss: Fix broken GetFullPathName() that could lead to strange behavior.
10 - Add a bunch of API stubs referenced by the debug version of Flash DLL.
11 - shell32: Implement SHGetDiskFreeSpace[Ex]().
12 - user32: Make sure GetQueueStatus?() correctly reports QS_KEY state (this
13 fixes playback in focused windows in Flash versions above 10.0.45).
14 - kernel32: Implement SwitchToThread().
15 - Brush up log files in Odin debug builds (human readable timestamps,
16 output serialization, etc.).
17 - user32: Support MIIM_FTYPE/MIIM_STRING flags properly in InsertMenuItem()
18 and SetMenuItemInfo() (this e.g. fixes context menus in Flash > 10.0.45).
19 - Show Odin version number in the About Odin dialog.
20
210.8.2 (2011-12-30)
22------------------
23 - Happy New Year everyone!
24 - Make PEC.EXE keep the console window attached (0.8.1 regression).
25 - Fix hang when loading KERNEL32.DLL from high-mem enabled applications
26 such as Firefox (0.8.1 regression).
27 - Fix crash when doing drag & drop in Odin applications (0.8.1 regression).
28 - winmm: Disable forceful termination of timer threads (this fixes frequent
29 hangs and crashes when playing Adobe Flash content in Firefox).
30 - winmm: Lower thread priority when calling timer functions.
31
320.8.1 (2011-12-19)
33------------------
34
35 - Port Odin from from IBM VAC 3 to the modern GCC 4 compiler and kLIBC
36 runtime. This improves the stability by getting rid of the old and bogus
37 C runtime of IBM VAC.
38 - Increase the minor version number due to the compiler change.
39 - shlwapi: Enable SHAutoComplete() stub (needed for WinRar 4.x).
40 - kernel32: Add GetUserDefaultUILanguage() and VerifyVersionInfoW() (stub)
41 needed for newer Flash modules.
42 - Temporarily remove the win32k driver from the packages (not ready to be
43 built with the new build framework at the present time).
44
450.7.1 (2011-09-30)
46------------------
47
48 - Increase the minor version number due to changing the installer to RPM.
49 - wgss: Add a hack to fix changing the current directory in CreateProcess
50 when starting the process of the same type.
51 - kernel32: CreateProcess: Add support for CREATE_UNICODE_ENVIRONMENT. This
52 fixes environment processing in Unicode mode (e.g. in OpenJDK).
53 - kernel32: GetFileAttributesEx: Accept paths with trailing slashes. This
54 fixes unexpected failures in e.g. SmartGit under OpenJDK.
55 - odininst: Create "Program Files" in WINDOWSDIR instead of drive root.
56
570.6.21668 (2011-07-10)
58----------------------
59
60Dmitriy Kuminov:
61 - kernel32: SEH: Disabled unwinding Win32 exception handlers in response to
62 the OS/2 unwind procedure to prevent endless recursive crashes inside
63 OS2RtlUnwind() happening due to stack corruption under SMP kernel when too
64 many threads are being unwound at once (seen as a lot of c0010001 and
65 c0010002 exceptions in POPUPLOG.OS2 after application termination).
66 - kernel32: Fixed a regression in 0.6.21659 that caused crashes in DOSCALL1
67 when writing to memory mapped files. The wrong code path would incorrectly
68 invalidate memory pages on each write. This affected all OpenJDK apps.
69
700.6.21659 (2011-06-27)
71----------------------
72
73Dmitriy Kuminov:
74 - kernel32: Fixed crashes in code involving _try/except due to garbage in
75 FS:[0].
76 - kernel32: GetFileAttributesEx?(): Interpret paths like 'X:' as 'X:\'
77 instead of reporting an error, for compatibility with Win32.
78 - kernel32: Propagate exceptions further along the OS/2 chain instead of
79 terminating the application if the last Win32 exception handler (eg the
80 SEH one) returns ExceptionContinueSearch. This lets unhandled exceptions
81 be seen by eg PROCDUMP.
82 - kernel32: SEH: Fixed rare crashes at process termination caused by
83 attempting to unwind the Win32 exception chain twice, the second time
84 after destroying the Win32 TEB block.
85 - kernel32: Fixed: Closing a duplicate of a handle opened with
86 FILE_FLAG_DELETE_ON_CLOSE would not perform file deletion as it should
87 if that duplicate was the last reference to the file (e.g. closed after
88 the original handle).
89 - ole32: Fixed a crash when dragging an object that doesn't support CF_TEXT
90 or CF_HDROP over an OS/2 (non-Odin) window.
91 - shell32: Fixed SHGetFileInfoW(): PIDL input argument was misinterpreted as
92 a string and the display name and type name fields SHFILEINFOW were not
93 properly set on output resulting in garbage on the caller's side.
94 - shell32: SHGetFileInfo(): Differentiate between different drive types
95 (network, local, removable etc) when filling the type name field for paths
96 like 'X:\'.
97 - user32: Fixed standard scroll bar functionality (stuck arrow and thumb
98 buttons) broken in February 2010.
99 - dsound: Open audio devices in shared mode to allow other processes play
100 sound when Java applications are running.
101 - wsock32: Don't start a dummy async thread when WSAEventSelect() is called
102 to simply cancel a non-existing association on a socket.
103 - wsock32: Fixed: Zeroing the async task structure at task termination would
104 prevent the VSemaphore destructor to be called which caused memory leaks.
105 - general: Show a nice error message box and exit instead of crashing if
106 WGSS50.DLL or KERNEL32.DLL initialization fails (eg due to low memory).
107
1080.6.21632 (2011-05-12)
109----------------------
110
111Dmitriy Kuminov:
112 - kernel32: Fixed: Parsing .SYM files when printing the stack trace in debug
113 mode was not thread safe which caused garbage and nested crashes.
114 - kernel32: SEH: Fixed a number of bugs in __try/__catch hangling that could
115 cause a bunch of various crashes when unwinding the Win32 exception chain
116 (usually at process termination, as a result of both a fatal exception or
117 a clean exit).
118 - kernel32: Do not use ODINCRT (VACRT) printf when handling XCPT_UNWIND in
119 debug mode since it's known to produce deadlocks.
120 - kernel32: To complete the Win32 exception chain unwind support, make sure
121 it is unwound when the thread terminates itself with ExitThread or
122 ExitProcess etc. before removing its exception handlers from stack.
123 - wgss: Added a hack that makes sure the system lock is released when the
124 thread terminates. This avoids deadlocks at process termination leading to
125 hanging non-killable zombie processes, which is especially frequent on SMP
126 systems.
127 - gdi32: Fixed broken TextOut? API family that would draw text flipped along
128 the base line.
129 - comdlg32: Made PrintDlg?() use the native PM print dialog instead of the
130 Win32 clone. This looks much more native and gives access to all printer
131 settings.
132 - minivcrt: Fixed _fullpath()/_wfullpath() which was broken in many regards
133 (i.e. it would eat path components starting with "." and "..").
134
1350.6.21606 (2011-03-28)
136----------------------
137
138Dmitriy Kuminov:
139 - general: Workaround the OS/2 loader bug in LIBPATHSTRICT=T mode by always
140 loading DLLs using the base name with no extension (e.g. "MDM" instead of
141 "MDM.DLL"). This fixes various problems like no sound in strict mode.
142 - general: A big bunch of fixes (headers and so on) for SDK mode.
143 - odincrt: Fixed a tiny typo in DosQueryModuleHandleStrict() that could
144 sometimes cause 100% CPU load at application startup eventually leading to
145 SYS1808 due to stack overflow.
146 - kernel32: VirtualQuery: Succeed with MEM_FREE for one page when querying
147 an unallocated address in the private arena (for which DosQueryMem fails
148 with ERROR_INVALID_ADDRESS). This will fix applications relying on proper
149 error reporting.
150 - kernel32: Report ERROR_MOD_NOT_FOUND from LoadLibrary() when it fails to
151 load a DLL due to missing import modules, to mimic Win32 behavior.
152 - tools/wrc: Restored generating GAS output by default. MASM output is now
153 generated by specifying the -M option.
154 - shell32: Shell_NotifyIcon(): Create a copy of the supplied icon because
155 the caller may DestroyIcon() on it at any time (which would cause systray
156 to display an empty rectangle). This matches Windows behavior.
157 - shell32: Implemented support for xsystray (Extended System Tray widget for
158 XCenter) which provides more functionality (in particular,
159 "TaskbarCreated" message broadcasting).
160
1610.6.21577 (2011-02-21)
162----------------------
163
164Dmitriy Kuminov:
165 - iphlpapi: Fixed a crash when building the adapter/interface/address tables
166 due to a bogus ioctl(SIOSTATRT) implementation in OS/2.
167 - kernel32: Implemented generating the high/low index values (using a CRC32
168 and a hash function on the fuill file name) and filling up the volume
169 serial number in a structure returned by GetFileInformationByHandle().
170 - kernel32: Implemented GetVolumePathName() API.
171 - kernel32: Disabled logging exceptions in release builds through RAS since
172 this involves .sym file reading and significantly slows down applications
173 that use exception handlers like traps for implementing application logic.
174 - kernel32: Fixed a bunch of OSLibDos* functions dealing with file names
175 that passed ANSI strings to the OS/2 APIs w/o first converting it to the
176 OEM codepage which caused "file not found" errors in various Win32 APIs
177 like GetFileAttributesEx() on file names Cyrillic, umlauts, etc.
178 - winmm: Accept handles returned by mixerOpen() as IDs in mixerGetDevCaps()
179 (according to MSDN) which fixes sound in applications using these IDs.
180 - dsound: Enumerate the default sound device twice in DirectSoundEnumerate()
181 (according to MSDN) to make applications relying on this work.
182
183Older Releases
184--------------
185
1862011-01-12: Dmitry A. Kuminov
187 - minivcrt: Use the own version of _fullpath() instead of the kLIBC one
188 because the latter isn't capable of resolving non-existent paths
189 (it allows only the last component to not exist) and it may also
190 unexpectedly change the current drive of the calling process.
191 - user32: Fixed national character input in a foreign process when an
192 Odin DLL attaches to it (such as Firefox and Flash 10) which was broken
193 in the previous release.
194 - user32: Fixed incorrect code page translation of window title text seen
195 in windows created on threads other than the main GUI thread.
196 - user32: Make GetQueueStatus() return actual message summary in high word
197 instead of the copy of the low word.
198 - user32: Fixed a crash during DnD when the dragged object was moved through
199 the title over the window frame.
200
2012010-12-30: Dmitry A. Kuminov
202 - Deduce Windows time zone from the current TZ setting.
203 - Lots of various fixes and improvements (to be specified later,
204 this is a test build).
205
2062010-09-06: Dmitry A. Kuminov
207 - Lots of various fixes and improvements (to be specified later,
208 this is a test build).
209
2102009-09-21 Andy Willis <abwillis1@gmail>
211 VAC365 updates. Mostly done by Dietrich. Couple by Steven Levine and some by myself.
212 src/odinprof/makefile
213 src/user32/Makefile
214 src/shell32/makefile
215 src/twain_32/makefile
216 src/imm32/makefile
217 src/winmm/mcicda/makefile
218 src/winmm/winmm.mak
219 src/dsound/dsmixer.cpp
220 src/dsound/makefile
221 src/ddraw/makefile
222 src/gdi32/makefile
223 src/winspool/winspool.cpp
224 src/winspool/makefile
225 src/win32k/win32k.tools.mk
226 src/win32k/win32k.mak
227 src/kernel32/kernel32.mak
228 src/kernel32/_ras.cpp
229 src/driverdll/makefile
230 src/libwrap/makefile
231 src/wnaspi32/makefile
232 src/capi2032/makefile
233 src/wsock32/makefile
234 src/odincrt/makefile
235 src/comdlg32/makefile
236 src/libwrap/libwrap0.mak
237 src/libwrap/libwrap1.mak
238
239
2402004-10-12: Chris Wohlgemuth <cinc@innotek.de>
241 - OLEAUT32:
242 o VarBstrFromDec() and VarDecFromStr() removed from stubs.cpp.
243 These are now implemented in variant.c.
244
2452004-10-11: Chris Wohlgemuth <cinc@innotek.de>
246 - OLEAUT32:
247 o duplicate V_DECIMAL(A) macro removed
248
2492004-10-08: Chris Wohlgemuth <cinc@innotek.de>
250 - KERNEL32: Added RegOpenCurrentUser() to registry.cpp.
251 - OLE32: ifs.c, Added some more comprehensive debug output to the IMalloc interface.
252 compobj.c, Added stub for CLSIDFromProgIDEx().
253 - OLEAUT32: o Added VT_R8 support to VarCmp (SvL)
254 - OLEAUT32: o Rewrote VarNumFromParseNum()
255 o Added VarDecFromStr() from Wine.
256 o VarParseNumFromStr() updated with Wine code
257 o Updated DECIMAL struct (include\win\windef.h) to Wine level.
258 o updated V_DECIMAL(A) macro (oleaut.h) to Wine level.
259 - OLEAUT32: variant.c, Added stubs for:
260 VarDecAdd()
261 VarDecMul()
262 VarDecSub()
263 VarDecAbs()
264 VarDecFix()
265 VarDecInt()
266 VarDecNeg()
267 VarDecRound()
268 VarDecCmp()
269 VarDecCmpR8()
270 VarOr()
271 VarNeg()
272 VarEqv()
273 VarIdiv()
274 VarAbs()
275 VarMod()
276 VarImp()
277 VarFix()
278 VarRound()
279 VarInt()
280 VarFormatNumber()
281 VarFormatPercent()
282 VarWeekdayName()
283 VarMonthName()
284
285 Added from Wine:
286 VarPow()
287 VarXor()
288 VarAdd()
289
290 safearray.c:
291 Added stubs for
292 SafeArrayGetRecordInfo()
293 SafeArraySetRecordInfo()
294 SafeArrayCreateEx()
295
296 Added from Wine:
297 SafeArraySetIID()
298 SafeArrayGetIID()
299
300
3012004-09-23: Chris Wohlgemuth <cinc@innotek.de>
302 -SHLWAPI: Fix for PathSetDlgItemPathW() by D. Teickner so import of reg files with
303 W98-regedit works (taking sizeof(WCHAR) into account).
304
305 2002-06-16: Dmitry Froloff <froloff@os2 >
306 - GDI32: o Fixed font creation for ANSI_CHARSET
307
308 2004-05-24: Eugene Romanenko <eros2@os2 >
309 - SHELL32: o Systray integration with XWP
310
311 2004-05-24: KO Myung-Hun <komh@chollian >
312 - GDI32: o DBCS updates
313 - IMM32: o Created OS/2 implementation
314 - KERNEL32: o DBCS/IMM updates
315 - USER32: o DBCS/IMM updates
316
317 2003-05-11: Dietrich Teickner <Dietrich_Teickner@t-online >
318 - USER32: o Added wrappers for calling window handlers
319
320 2004-05-07: KO Myung-Hun <komh@chollian >
321 - GDI32: o DBCS updates
322
323 2004-05-06: Sander van Leeuwen <sandervl@innotek >
324 - COMDLG32: o Update the hDevNames member of the printer dialog structure
325 whenever the user chooses another printer
326
327 2004-05-03: knut st. osmundsen <bird-changelog@innotek >
328 - USER32: o Missing clipboard updates
329
330 2004-04-30: Sander van Leeuwen <sandervl@innotek >
331 - COMDLG32: o Always turn off collate support
332 - GDI32: o drawSingleLinePoint: wrong pen style checks
333
334 2004-04-27: Andy Willis <abwillis@comcast >
335 - IMM32: o Renamed to IMM32OS2
336
337 2004-04-19: knut st. osmundsen <bird-changelog@innotek >
338 - USER32: o Changed some critical sections which weren't initiated to
339 VMutex to get automatic initialization.
340 - LIBWRAP: o DosVerifyPidTid.
341
342 2004-04-15: Sander van Leeuwen <sandervl@innotek >
343 - USER32: o SetWindowPos: do not check for position and size redundancy
344
345 2004-04-08: knut st. osmundsen <bird-changelog@innotek >
346 - INCLUDE: o Merged wingdi.h from current WINE CVS.
347 o Added prototypes for new WGSS APIs.
348 - GDI32: o Corrected a few problems due to wingdi.h merge.
349 o Corrected GetDIBits query mode.
350 - USER32: o Rewrote clipboard code completely.
351
352 2004-04-07: Sander van Leeuwen <sandervl@innotek >
353 - KERNEL32: o Profile: flush ini file after write actions
354
355 2004-04-06: Sander van Leeuwen <sandervl@innotek >
356 - WINMM: o Automatically disable audio support when any Crystal driver
357 is detected
358 - KERNEL32: o Changed check for number of memory map views
359
360 2004-04-02: Sander van Leeuwen <sandervl@innotek >
361 - KERNEL32: o ReadFile/WriteFile: wrong page calculation for memory maps
362
363 2004-03-25: Sander van Leeuwen <sandervl@innotek >
364 - GDI32: o LineTo: special case in toWin32LineEnd when inside a path
365 definition
366
367 2004-03-24: Sander van Leeuwen <sandervl@innotek >
368 - GDI32: o CreateDIBitmap: added workaround for DIB_PAL_COLORS mode
369
370 2004-03-24: Vitali Pelenyov <sunlover@innotek >
371 - KERNEL32: o GetVolumeInformation: check for file system buffer size
372
373 2004-03-23: Sander van Leeuwen <sandervl@innotek >
374 - USER32: o MapVirtualKeyA: must convert return value from PM to windows
375 scancodes
376 o OSLibWinTranslateMessage: removed some strange numpad related
377 hacks that caused problems for VK_DECIMAL processing
378
379 2004-03-22: Sander van Leeuwen <sandervl@innotek >
380 - COMCTL32: o Rebar: changed resize fix again
381
382 2004-03-18: Sander van Leeuwen <sandervl@innotek >
383 - USER32: o RedrawWindow: ignore if window is not visible
384 o Dialog: use CallWindowProcA/W for calling the dialog procedure
385 - SHELL32: o Allow shell links to be placed in arbitrary directories
386
387 2004-02-17: knut st. osmundsen <bird-changelog@innotek >
388 - KERNEL32: o Fixed HEAP_strdupW.
389 - USER32: o GpiCreateBitmap() sometimes read too much data, allocate more to
390 prevent hitting the electric fence.
391
392 2004-03-17: Sander van Leeuwen <sandervl@innotek >
393 - COMCTL32: o Merged latest Wine rebar and status controls
394 o Status: invalidate window if SBARS_SIZEGRIP and width or
395 height changed
396 o Rebar: resize control to match parent width in WM_SIZE
397
398 2004-03-16: Vitali Pelenyov <sunlover@innotek >
399 - ODINCRT: o New os2 fast critical section implementation
400
401 2004-03-16: Sander van Leeuwen <sandervl@innotek >
402 - USER32: o Changed SPI_ICONHORIZONTALSPACING & SPI_ICONHORIZONTALSPACING
403 to (75,75)
404 - WINMM: o Check that we aren't overwriting existing data in case
405 we get a lot more audio data than fits in our internal DART
406 buffers.
407 - KERNEL32: o PROFILE_GetSection regression fix (heap corruption)
408 - COMCTL32: o Listview: merged with latest Wine code
409
410 2004-03-15: Sander van Leeuwen <sandervl@innotek >
411 - USER32: o GetKeyboardLayoutNameA; use only the low word returned by
412 GetKeyboardLayout to build the keyboard layout string
413 o SystemParametersInfo: added SPI_ICONVERTICALSPACING &
414 SPI_ICONHORIZONTALSPACING
415 o GetSystemMetrics: corrected SM_CXICONSPACING & SM_CYICONSPACING
416 o SystemParametersInfo: added SPI_SETDRAGFULLWINDOWS
417
418 2004-03-12: Sander van Leeuwen <sandervl@innotek >
419 - SHELL32: o Disabled Shell_NotifyIconA
420 - USER32: o SPI_GETNONCLIENTMETRICS: corrected caption width and height
421 o WM_EXITSIZEMOVE should be sent after the window position
422 and/or size has been changed.
423 - GDI32: o SetDIBitsToDevice/StretchDIBits; set coloruse to DIB_RGB_COLORS
424 for high (>=15) bpp bitmaps; GPI will crash with DIB_PAL_COLORS
425
426 2004-03-12: knut st. osmundsen <bird-changelog@innotek >
427 - KERNEL32: o Added interface to HM for querying the object type.
428
429 2004-03-11: Sander van Leeuwen <sandervl@innotek >
430 - USER32: o More WH_MOUSE changes
431
432 2004-03-10: Sander van Leeuwen <sandervl@innotek >
433 - USER32: o Added support for WH_MOUSE hook
434
435 2004-03-09: Sander van Leeuwen <sandervl@innotek >
436 - GDI32: o SetDIBitsToDevice: fixes for xSrc offset
437
438 2004-03-09: Vitali Pelenyov <sunlover@innotek >
439 - GDI32: o SetDIBitsToDevice: fixes for partial blits
440
441 2004-02-27: Sander van Leeuwen <sandervl@innotek >
442 - USER32: o Re-assert DC transformation and y-inversion after SetWindowPos
443 o Fixed b&w mouse cursors
444 - GDI32: o SetDIBitsToDevice: fixed bugs when dealing with negative height
445 o StretchDIBits: If biClrUsed equals 0, set it to (1<<bitcount)
446 Disabled DIB_PAL_COLORS workaround
447 o SetDIBitsToDevice: removed Matrix driver bug workaround;
448 - NETAPI32: o Removed all OS/2 Netbios dependencies
449
450 2003-02-24: Dietrich Teickner <Dietrich_Teickner@t-online >
451 - KERNEL32: o CreateProcess fix
452
453 2004-02-23: Sander van Leeuwen <sandervl@innotek >
454 - USER32: o Backed out RedrawWindow change
455 o Edit: wrong ScrollWindowEx call; must include SW_ERASE
456 o ScrollWindowEx: set background erase flag for SW_ERASE
457
458 2004-02-20: Sander van Leeuwen <sandervl@innotek >
459 - KERNEL32: o Default CPU is set to Pentium if the one in the system isn't recognized
460
461 2004-02-19: Sander van Leeuwen <sandervl@innotek >
462 - USER32: o RedrawWindow; wrong check for update region when clearing
463 WM_ERASEBKGND flag.
464
465 2004-02-19: KO Myung-Hun <komh@chollian >
466 - KERNEL32: o DBCS fixes for console & resource functions
467
468 2004-02-17: Sander van Leeuwen <sandervl@innotek >
469 - GDI32: o CreateDCA: special handling of FILE and FILE: ports
470
471 2004-02-16: KO Myung-Hun <komh@chollian >
472 - USER32: o Edit control: DBCS related fixes
473
474 2004-02-16: Sander van Leeuwen <sandervl@innotek >
475 - USER32: o EndPaint; fixed region handle leaks
476 - GDI32: o Another region leak in GdiCombineVisRgnClipRgn fixed
477 o DIB Section: flush used the wrong RGB conversion
478
479 2004-02-13: Sander van Leeuwen <sandervl@innotek >
480 - KERNEL32: o Allocate memory for the map during CreateFileMapping and
481 free it when the map is destroyed
482
483 2004-02-12: Sander van Leeuwen <sandervl@innotek >
484 - GDI32: o PathToRegion failure bugfix + leak fixed
485 o SelectClipPath can fail in printer DCs. Pretend success.
486 - URLMON: o Added HlinkNavigateString, CreateAsyncBindCtx & IsAsyncMoniker stubs
487
488 2004-02-11: Sander van Leeuwen <sandervl@innotek >
489 - USER32: o HODIN_PREWINDOWCREATEDA extension added
490
491 2004-02-10: Sander van Leeuwen <sandervl@innotek >
492 - KERNEL32: o Added ODIN_SetProcessDword function to change the startup
493 information about size, position and state of the main
494 application window.
495 o Rewrote keyboard hook handler to post messages and swallow
496 the one it gets from PM.
497 - GDI32: o Wrong GdiCopyClipRgn return value
498 o Implemented SelectClipPath
499
500 2004-04-04: Platon Fomichev <pfomichev@alarity >
501 - USER32: o Fixed typo in PeekMessageA/W.
502
503 2004-01-30: knut st. osmundsen <bird-changelog@innotek >
504 - USER32: o AttachThreadInput implementation (read hack).
505 - OLE32: o Drag & Drop fixes.
506 o Resynced ole2.c with current wine.
507 - various: o Added DEBUG_LOGGING define to indicate logging in order to
508 make release mode logging possible. Changed a few places where
509 DEBUG were used to include/exclude logging related code.
510
511 2004-01-29: knut st. osmundsen <bird-changelog@innotek >
512 - KERNEL32: o Parse LANG to figure out the language id.
513 - INCLUDE: o Synced language IDs with current wine.
514 This includes moving them from winnls.h to winnt.h.
515 - WRC: o Synced lang2cps table with wine. (needed due to above header update)
516
517 2004-01-21: Sander van Leeuwen <sandervl@innotek >
518 - USER32: o DrawIconEx: handle cyWidth == 0 case correctly
519
520 2004-01-20: Sander van Leeuwen <sandervl@innotek >
521 - KERNEL32: o Wrote wrapper for our exception handler to clear the direction
522 flag on entry (reported by Dietrich Teickner)
523 - WINMM: o MCIWAVE.DRV updates from Wine
524 o mciSendCommandW update from Wine
525 o Hardcoded MCI drivers (cdaudio & waveaudio)
526 o Added LGPL license file
527
528 2004-01-19: Sander van Leeuwen <sandervl@innotek >
529 - USER32: o Allocate DC for windows with CS_CLASSDC style (one per window)
530
531 2004-01-15: KO Myung-Hun <komh@chollian >
532 - GDI32: o Cleanup of text functions
533
534 2004-01-15: knut st. osmundsen <bird-changelog@innotek >
535 - DBGWRAP: o Added optional display of caller address.
536 (Remove NO_CALLER #define)
537 - PE2LX: o Process imports in Ring-3.
538 - KERNEL32: o Rewrote pe2lx classes to match pe2lx import changes.
539 o Made pe2lx classes use the generic export lookup.
540 o Rewrote the generic PE export lookup in the base class
541 to use a binary search and support pe2lx images with
542 differnet RVA calculation.
543 o Fixed a couple of COMMIT_ALL issues where pages were touched
544 by winimagepeldr code before they were preloaded.
545 - USER32: o Removed duplicate (and dangerous) checks on framewindows
546 in a couple of enumerations (OSLibWinQueryClientWindow).
547 - MAKE: o Warn about uninitialized variables for C++ code.
548 (Looks like it give a lot of false warnings on C code, so
549 let's skip it there.)
550
551 2004-01-14: KO Myung-Hun <komh@chollian >
552 - GDI32: o Fixed Ft2CharStringPosAtW(), passing lCount instead len.
553 o Modified Ft2GetTextExtentW(). Now use OSLibGpiQueryCharStringPosAt().
554 o Fixed InternalTextOutAW(). When using font association, the height of
555 DBCS and SBCS chars may be different. In this case, background
556 color make stair below chars.
557 o Fixed GetTextExtentPointA() and GetTextExtentExPointA() to support DBCS.
558
559 2003-01-11: Sander van Leeuwen <sandervl@innotek >
560 - GDI32, USER32, KERNEL32:
561 o Major updates.
562
563 2004-01-08: KO Myung-Hun <komh@chollian >
564 - GDI32: o Fixed FONT_mbtowc(). If charset is 0, CP must not be 1252 in DBCS country.
565 o Restored calcDimensions(). The result of the old is the same as that
566 of O32_GetTextExtent().
567
568 2003-12-29: KO Myung-Hun <komh@chollian >
569 - GDI32: o GetTextExtentPointW fix
570 o GetTextExtentExPointA fix for DBCS leadbytes
571
572 2003-12-29: Dietrich Teickner <Dietrich_Teickner@t-online >
573 - GDI32: o GetTextExtentPointW fix
574
575 2003-12-12: Dietrich Teickner <Dietrich_Teickner@t-online >
576 - KERNEL32: o Fix for memory map offset
577
578 2003-12-01: KO Myung-Hun <komh@chollian >
579 - GDI32: o Use Warpsans Combined in DBCS environments
580 - SHLWAPI: o Forward wvnsprintfA/W to user32
581 - USER32: o wvsnprintfA/W: fixed ascii and unicode conversion
582 o Listbox: added index and length conversion between ANSI and UNICODE
583
584 2003-12-01: Dietrich Teickner <Dietrich_Teickner@t-online >
585 - SHELL32: o Fixed memory leak
586
587 2002-11-21: Dmitry Froloff <froloff@os2 >/Alex Samorukov (samm@os2.kiev )
588 - KERNEL32: o Support for Ukrainian language added
589 o Unicode table updates
590 - USER32: o Ukrainian resources added
591 - TOOLS\WRC:o Unicode table updates
592
593 2003-11-17: Sander van Leeuwen <sandervl@innotek >
594 - USER32: o Destroy switch entry before hiding window in DestroyWindow.
595 (workaround for XCenter problems)
596 - SHELL32: o Destroy icon cache imagelists in SIC_Destroy
597
598 2003-11-14: Sander van Leeuwen <sandervl@innotek >
599 - USER32: o Updates
600
601 2003-11-12: Sander van Leeuwen <sandervl@innotek >
602 - GDI32/USER32:
603 o Clip/visible region changes
604
605 2003-11-12: Dietrich Teickner <Dietrich_Teickner@t-online >
606 - SHELL32: o Resource updates
607 o Shell file operations updates
608
609 2003-11-11: knut st. osmundsen <bird-changelog@innotek >
610 - MAKE: o Added a set of custombuild rules to the root makefile.
611
612 2003-10-30: Sander van Leeuwen <sandervl@innotek >
613 - SHELL32: o Wrong if statement in recent SHAddToRecentDocs patch
614
615 2003-10-24: Sander van Leeuwen <sandervl@innotek >
616 - SHLWAPI: o Removed wrong debug wrappers for forwarders
617 - WININET: o Fixed initterm
618 - VERSION: o Resync with Wine
619 - PEBUILD: o Added
620
621 2003-10-25: knut st. osmundsen <bird-changelog@anduin >
622 - MAKE: o pe_*.obj changes for custombuilds.
623 o Custombuild objects goes into .\bin\<buildmode>.cust so it's
624 possible to build both in the same tree.
625 o Don't build the src/custombuild directory as it's broken.
626
627 2003-10-22: Sander van Leeuwen <sandervl@innotek >
628 - USER32: o Use WC_FRAME for the Odin frame window and subclass it. There's
629 some PM code that makes assumptions about frame window names.
630 o Updates for new keyboard hook
631 - PMKBDHK: o Updates
632
633 2003-10-20: Sander van Leeuwen <sandervl@innotek >
634 - USER32: o PM windows should have no owner if none is specified. (instead
635 of their parent)
636 (NOTE: Potentially dangerous change!)
637
638 2003-10-20: Platon Fomichev <stauff@innotek >
639 - USER32: o On init we should migrate fonts that Windows applications
640 installed globally.
641
642 2003-10-16: Sander van Leeuwen <sandervl@innotek >
643 - SHELL32: o CommandLineToArgvW bugfix from Wine
644 - ADVAPI32: o Check for valid SID pointer in LengthSid
645
646 2003-10-13: Platon Fomichev <stauff@innotek >
647 - COMDLG32: o We should set/clear PD_PRINTTOFILE flag when we click on
648 checkbox to change dialog print structure.
649
650 2003-10-13: Sander van Leeuwen <sandervl@innotek >
651 - WINMM: o Make sure the timer object is not deleted inside the timer
652 callback handler
653
654 2003-10-06: Platon Fomichev <stauff@innotek >
655 - USER32: o Wrong class names (case) for Static, Scroller, Button.
656 - OLEAUT32: o GIF and JPEG static libs for IPicture interface implementation
657
658 2003-10-06: KO Myung-Hun <komh@chollian >
659 - USER32: o Fixed heap corruption when changing windows text (DBCS)
660
661 2003-10-01: Sander van Leeuwen <sandervl@innotek >
662 - USER32: o Clean up global critical section (window handles) during unload
663 - SHELL32: o Added stubs for SHGetNewLinkInfoA/W
664
665 2003-10-01: Platon Fomichev <stauff@innotek >
666 - USER32: o CallWindowProcA/W: don't fail if window handle is invalid
667 - SHELL32: o Add support for Unicode adding of files to 'recent document'
668 - COMCTL32: o Fixed bug when calling function by pointer in MRU funcs
669
670 2003-09-30: knut st. osmundsen <bird-odinspam@anduin >
671 - CMDQD: o Fixed code which messes with STD handles.
672
673 2003-09-18: KO Myung-Hun <komh@chollian >
674 - KERNEL32: o fixed GetAtomNameW() and GlobalGetAtomNameW() to support
675 unicode correctly. (DBCS)
676
677 2003-09-14: knut st. osmundsen <bird-odinspam@anduin >
678 - MAKE: o Synced with other projects using the new buildsystem (which
679 odin doesn really use yet).
680 - TOOLS/BIN:o Updated BuildEnv.cmd. Will now facilitate a global config
681 file in the ETC directory if not a local one is found.
682
683 2003-09-07: knut st. osmundsen <bird-odinspam@anduin >
684 - LIBWRAP: o Do all .asm's in with on ALP.
685
686 2003-08-22: Sander van Leeuwen <sandervl@innotek >
687 - USER32: o Ignore messages sent or posted to the desktop window
688 o Post/SendMessage: use shared or local memory depending
689 on the target window.
690
691 2003-08-20: Sander van Leeuwen <sandervl@innotek >
692 - USER32: o Do not create CD polling window by default. It can cause
693 PM hangs. (IOCtl blocks indefinitely)
694
695 2003-08-09: Sander van Leeuwen <sandervl@innotek >
696 - IPLOG: o Limit logfile size to 250 MB. When reached, reset file position
697 to start of file.
698
699 2003-08-08: Sander van Leeuwen <sandervl@innotek >
700 - TOOLS\CVTASM:
701 o Header parser and assembly wrapper generator
702 - LIBWRAP: o Assembly wrappers for WGSS and OS/2 functions
703 - USER32: o Update for libwrap
704
705 2003-08-07: KO Myung-Hun <komh@chollian >
706 - USER32: o Generate WM_IME_CHAR messages for DBCS input
707 o Process WM_IME_CHAR in Edit, Listbox, Combo controls and
708 default window procedures
709
710 2003-08-06: Sander van Leeuwen <sandervl@innotek >
711 - USER32: o Cleaned up GetMessage/PeekMessage.
712 o Removed DispatchMessage change for WM_CHAR; must return
713 the proper format in Get/PeekMessageA/W.
714 (assuming the GetMessageW/DispatchMessageA combination is
715 not allowed)
716
717 2002-08-06: Dmitry Froloff <froloff@os2 >
718 - KERNEL32: o HMDeviceConsoleOutClass::CreateFile; use current window size
719 instead of default
720
721 2003-08-01: Sander van Leeuwen <sandervl@innotek >
722 - USER32: o Fixed SPI_GETWHEELSCROLLLINES
723 - AVICAP32: o Added stub dll from Wine
724 - KERNEL32: o Added InitializeCriticalSectionAndSpinCount from Rewind
725
726 2003-07-31: KO Myung-Hun <komh@chollian >
727 - USER32: o fixed GetMenuStringA() to truncate DBCS string correctly.
728 o fixed GetMenuItemInfo_common() to truncate DBCS string correctly.
729 o fixed WM_GETTEXT of Win32BaseWindow::DefWindowProcA() and
730 Win32BaseWindow::DefWindowProcW() to ensure null-terminator.
731 o fixed Win32BaseWindow::GetWindowTextA() and Win32BaseWindow::GetWindowTextW()
732 to ensure null-terminator.
733 o fixed memory allocation for windowNameW. When open 'Open common dialog box'
734 memory block of windowNameW is overwritten.
735 o fixed MessageBoxIndirectW() to support unicode correctly.
736 o fixed OSLibWinDispatchMsg() to distinguish ascii message from
737 unicode message in case of the message being sent directly
738 o fixed OS2ToWinMsgTranslate() to process DBCS input.
739 o fixed Win32BaseWindow::MsgChar() to distinguish ascii from unicode message.
740 o fixed Win32BaseWindow::MsgCreate(), Win32BaseWindow::DefWindowProcA(),
741 Win32BaseWindow::DefWindowProcW() to process messages related to
742 window name such as WM_GETTEXT, WM_GETTEXTLENGTH, WM_SETTEXT, and so on.
743 o fixed Win32BaseWindow::GetWindowTxtLength(), Win32BaseWindow::GetWindowTextA(),
744 and Win32BaseWindow::GetWindowTextW() to process window name correctly.
745 o fixed DispatchMessageW() to call CallWindowProcW() not CallWindowProcA().
746 o fixed WINPROC_UnmapMsg32ATo32W(). len is first word of ptr not lParam on EM_GETLINE.
747 o changed a parameter WPARAC wParam to WPARAC *wParam of WINPROC_MapMsg32WTo32A() and
748 WINPROC_UnmapMsg32WTo32A() to process WM_GETTEXT.
749 o fixed WINPROC_MapMsg32WTo32A(). When EM_GETLINE mapped, first word of lParam
750 is ascii length not unicode length.
751 o improved WINPROC_CallProc32ATo32W() and WINPROC_CallProc32WTo32A() to process WM_CHAR
752 and WM_GETTEXTLENGTH, LB-GETTEXTLEN, CB_GETLBTEXTLEN.
753 o fixed edit control to process WM_CHAR including splitted DBCS chars.
754 o fixed listbox control to process WM_CHAR including splitted DBCS chars.
755
756 2002-07-31: Dmitry Froloff <froloff@os2 >
757 - USER32: o Convert WM_CHAR characters to UTF-16 for unicode windows
758
759 2003-07-28: Platon Fomichev <stauff@innotek >
760 - WMC: o Port of Wine Windows Message Compiler
761 - KERNEL32: o Fixed loading of unicode messages and added loading of
762 internal ones. (message file from Rewind)
763
764 2003-07-28: knut st. osmundsen <bird-odin-spam@anduin >
765 - USER32: o Updates
766 - OLEPRO32: o Updates
767 - ODINCRT: o Use fast method to query pid & tid in critical sections
768
769 2003-07-28: Sander van Leeuwen <sandervl@innotek >
770 - USER32: o Updates
771 - WINMM: o Updates
772 - OLE32: o Updates
773 - SHELL32: o Return 'My Computer' when an applications asks for the
774 'Network Places' shell32 object
775 o Filter out hidden files in CreateFolderEnumList if not wanted (Wine update)
776 o Also check for SFGAO_HASSUBFOLDER flag when deciding whether or
777 not to clear SFGAO_FOLDER & SFGAO_HASSUBFOLDER!
778 (---> submit to Wine)
779
780 2003-07-16: KO Myung-Hun <komh@chollian >
781 - SHELL32: o DragQueryFileW; allocate more for unicode conversion (DBCS)
782 - WINMM: o Fixed mciGetErrorStringW() to prevent buffer overflow.
783 o Fixed midiInGetErrorText() and midiOutGetErrorText()
784 to prevent buffer overflow.
785 o Fixed waveInGetErrorTextW() to prevent buffer overflow.
786 o Fixed waveOutGetErrorTextW() to prevent buffer overflow.
787 - GDI32: o Fixed GetTextFaceW() to support unicode correctly. (DBCS)
788 o Fixed calcDimensions(). The width is one point - other point + 1
789 (code currently not active)
790 - KERNEL32: o Added functions to query length after ascii or unicode conversion
791 o Changed the destination length parameter name of lstrcpynWtoA()
792 and lstrcpynAtoW().
793
794 2002-07-16: Yuri Dario <mc6530@mclink >
795 - INSTALL: o Do not overwrite program files registry entry if it already
796 exists and is valid.
797
798 2003-07-16: Dietrich Teickner <Dietrich_Teickner@t-online >
799 - GDI32: o Fix for partial blits in StretchDIBits
800
801 2003-07-14: KO Myung-Hun <komh@chollian >
802 - GDI32: o Fixed InternalTextOutW() and GetTextExtentPointW() to support
803 unicode correctly. (DBCS)
804 - COMCTL32: o Fixed PROPSHEET_CollectSheetInfoA() and PROPSHEET_SetTitleA()
805 to convert ascii to unicode correctly. (DBCS)
806 o Fixed TREEVIEW_TVItemFromItem() and TREEVIEW_BeginLabelEditNotify()
807 to convert ascii to unicode correctly. (DBCS)
808 o Fixed TREEVIEW_SetItemW() to convert unicode to ascii correctly. (DBCS)
809
810 2003-07-11: Dietrich Teickner <Dietrich_Teickner@t-online >
811 - SHELL32: o Shell folder updates
812
813 2003-07-09: knut st. osmundsen <bird-odinspam@anduin >
814 - MAKEFILES:o Invoke RC directly and not thru the CMDQD.
815
816 2002-07-07: Dmitry Froloff <froloff@os2 >
817 - PMKDBHK: o Pass Alt-Shift on to PM (Russian language switch hotkey)
818
819 2003-07-03: Sander van Leeuwen <sandervl@innotek >
820 - USER32: o Free drag transfer structure after sending DM_RENDERCOMPLETE
821 o MapVirtualKey: when mapping VK_A-VK_Z, VK_0-VK_9 to their
822 scancodes, use hardcoded character mapping for convertion.
823
824 2003-06-26: Platon Fomichev <stauff@innotek >
825 - USER32: o ShowWindow(SW_RESTORE) should start the same PM restoration
826 routine as WM_SYSCOMMAND
827
828 2003-06-03: Sander van Leeuwen <sandervl@innotek >
829 - USER32: o Don't search for keyboard accelerators in the default
830 WM_SYSKEYDOWN handler. That's already done in TranslateAccelerator
831 o Send focus messages when we receive the undocumented WM_FOCUSCHANGED
832 PM message. Removes the need for the ugly hack to deal with
833 nested focus changes.
834 - COMCTL32: o Rebar fix for recursive size changes
835
836 2003-06-02: Sander van Leeuwen <sandervl@innotek >
837 - KERNEL32: o CreatePipe: create unique named pipe
838 o CreateNamedPipe: fixed return value + wrong check for duplex pipe
839
840 2003-05-29: Platon Fomichev <stauff@innotek >
841 - COMCTL32: o Listview selection draw code was not ok with OS/2 look
842
843 2003-05-28: Platon Fomichev <stauff@innotek >
844 - COMCTL32: o OWNERDRAW fixes for ListView control
845
846 2003-05-27: Sander van Leeuwen <sandervl@innotek >
847 - USER32: o Do not send WM_STYLECHANGING/ED messages when the scrollbar
848 control is shown or hidden.
849 o PeekMessage fix (regression from 5-16)
850
851 2003-05-26: Sander van Leeuwen <sandervl@innotek >
852 - COMCTL32: o Use the new resources from Wine.
853
854 2003-05-26: Platon Fomichev <stauff@innotek >
855 - COMCTL32: o Listview selection draw code was incomplete due to resync.
856
857 2003-05-26: Platon Fomichev <stauff@innotek >
858 - COMCTL32: o Patrick's 2001 fixes broke too much. Stay with ReWind for now.
859
860 2003-05-23: Sander van Leeuwen <sandervl@innotek >
861 - KERNEL32: o ClearCommError: lpdwError is allowed to be NULL
862
863 2003-05-16: Sander van Leeuwen <sandervl@innotek >
864 - USER32: o Use our fast critical sections instead of OS/2 mutex semaphores
865 in the timer code.
866 o Handle WM_(SYS)TIMER timer calls in DispatchMessageA/W.
867 We previously called timer handlers when we received WM_TIMER
868 from PM. That's not correct. These messages must be returned
869 by Get/PeekMessage. The handler will not be called if the
870 timer message is not dispatched. (verified in NT4)
871
872 2003-05-16: Platon Fomichev <stauff@innotek >
873 - USER32: o Eat first WM_MOUSEMOVE while menu tracking like windows does
874 to prevent 'auto-clicking' on popup menus that appear in the
875 area of first mouse-click
876
877 2003-05-15: Sander van Leeuwen <sandervl@innotek >
878 - USER32: o Window creation: updated the coordinate fix code with the latest Rewind version
879 o ReleaseDC: always verify window associated with DC
880 - COMCTL32: o Complete resync with latest Wine (except draglist)
881 o Implemented LVM_APPROXIMATEVIEWRECT for LVS_REPORT controls
882 (needed to get rid of a crash; very likely to be incorrect)
883
884 2003-05-14: Sander van Leeuwen <sandervl@innotek >
885 - GDI32: o DIB section: do not fetch more colors from a bitmap header than
886 biClrUsed (if != 0)
887 o GetDIBits: save and restore negative height & log failure
888 - USER32: o Do not send any SetWindowPos related messages if the state
889 of the window doesn't change.
890
891 2003-05-12: Sander van Leeuwen <sandervl@innotek >
892 - KERNEL32: o _lopen: wrong parsing of mode parameter
893 (only found now due to CreateFile changed with dwDesiredAccess)
894
895 2003-05-07: Sander van Leeuwen <sandervl@innotek >
896 - USER32: o Added more members to the TEB structure
897
898 2003-05-06: Sander van Leeuwen <sandervl@innotek >
899 - KERNEL32: o Fixed closing of parent file handle by duplicate memory map
900 o Compare file names instead of handles when checking for
901 duplicate file maps.
902 - USER32: o ReleaseDC check if hwnd parameter is correct (WindowFromDC(hdc))
903 o Messagebox: Wrong ReleaseDC call
904
905 2003-05-06: knut st. osmundsen <bird-odin-spam@anduin >
906 - KERNEL32: o Corrected the handling of OF_PARSE in OpenFile.
907
908 2003-05-05: Sander van Leeuwen <sandervl@innotek >
909 - KERNEL32: o Handle files opened with 0 for dwDesiredAccess seperately.
910 Those handles can only be used with a limited nr of functions
911 (such as GetFileType/Size/Time)
912 - IPHLPAPI: o Implemented GetIpAddrTable, GetIfTable & GetFriendlyIfIndex
913
914 2003-05-02: Sander van Leeuwen <sandervl@innotek >
915 - USER32: o Keep track of all open window DCs
916 o During WM_VRNENABLED we must query the visible region
917 of all open DCs to ensure that GPI updates the visible
918 region (e.g. when a window has moved).
919 A bug in PM/GPI causes open DCs to get out of sync when
920 moving windows with full window drag enabled.
921 (without full window drag there is no such problem due
922 to the use of LockWindowUpdate)
923
924 2003-04-30: Platon Fomichev <stauff@innotek >
925 - USER32: o In WM_PARENTNOTIFY correctly map window coordinates for each
926 window we send this message to.
927 Correctly finish PM minimize sequence.
928 Correctly switch titlebar higlight on activate/deactivate.
929
930 2003-04-30: Dietrich Teickner <Dietrich_Teickner@t-online >
931 - SHLWAPI: o Fixed PathIsUrlA/W
932 - KERNEL32: o Changed dll renaming to include extension if it's not .dll
933 - ODIN.INI: o Update for kernel32 change
934 (IMPORTANT: must update your odin.ini with this one or
935 delete the current file)
936
937 2003-04-27: Platon Fomichev <stauff@innotek >
938 - USER32: o Correctly finish PM restore procedure from minimized state.
939 o Use Stock brush for minimized icon fill when it is not
940 allocated.
941
942 2003-04-25: Sander van Leeuwen <sandervl@innotek >
943 - NTDLL: o Initialize kernel32 first (circular dependency between
944 kernel32 & ntdll)
945
946 2003-04-25: knut st. osmundsen <bird-odin-spam@anduin >
947 - USER32: o Fake window subclass FS bugfix.
948
949 2003-04-24: knut st. osmundsen <bird-odin-spam@anduin >
950 - USER32: o Fake window init bugfixes
951
952 2003-04-24: Sander van Leeuwen <sandervl@innotek >
953 - USER32: o EndDialog: Enable owner window regardless of whether it was
954 enabled before dialog creation. When the owner
955 is disabled and we hide the dialog, then PM switches
956 focus to another application. (hidden windows cannot
957 have focus)
958 o Win32BaseWindow::GetWindowFromOS2Handle: also check fake
959 windows)
960
961 2003-04-24: Platon Fomichev <stauff@innotek >
962 - USER32: o Fixed restore/maximize from minimized state for MDI windows.
963
964 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
965 - USER32: o Properties allocated from shared memory.
966 o Fake window updates.
967
968 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
969 - src/makefile:
970 o Build NTDLL too. (netlabs only)
971
972 2003-04-14: knut st. osmundsen <bird-odin-spam@anduin >
973 - USER32: o Implemented SW_SHOWDEFAULT.
974 - KERNEL32: o Changed initialization of StartupInfo to take the actual
975 values of the CreateProcess call (but for the strings).
976 (not complete)
977
978 2003-04-11: knut st. osmundsen <bird-odin-spam@anduin >
979 - USER32, KERNEL32, include/win/thread.h:
980 o Implemented WM_COPYDATA.
981
982 2002-04-11: Sander van Leeuwen <sandervl@innotek >
983 - USER32: o Send WM_WINDOWPOSCHANGED for ShowWindow(SW_SHOWWINDOW)
984 o Tool windows (WS_EX_TOOLWINDOW) don't have minimize or maximize
985 buttons. (testing shows this in NT4)
986 o Changed default hittest handler to check for WS_EX_TOOLWINDOW
987 (system menu & min/max buttons)
988 o MENU_TrackKbdMenuBar: check for WS_EX_TOOLWINDOW before using
989 the system menu.
990 o Display tool window titlebars in win32 style. They are supposed
991 to be thinner than standard PM titlebar controls.
992
993 2003-04-11: Dmitry Froloff <froloff@os2 >
994 - KERNEL32: o Console updates
995
996 2003-04-10: Platon Fomichev <stauff@innotek >
997 - MSVCRT : o MSVCRT updates, forwarders to stdcall functions, lots of funcs
998 now directly imported from NTDLL, resync with latest Wine
999 - EMXLIBS : o Added yet another wrapper for FS and added some funcs for new
1000 msvcrt
1001 - INCLUDE : o OS2SEL functions corrected for potential optimizing problems
1002 in release build. (Bug found and corrected by Dietrich)
1003
1004 2002-04-09: Sander van Leeuwen <sandervl@innotek >
1005 - KERNEL32: o Unmap memory view when deleting PE dll object.
1006 (problem found by Dietrich)
1007
1008 2003-04-09: Platon Fomichev <stauff@innotek >
1009 - COMCTL32: o Due to flaw in cdecl implementation of GCC temporary
1010 correctly import _wtoi func from NTDLL
1011 - EMXLIBS: o Possible endless loop in OS2FS replacement funcs
1012 (problem found by Dietrich)
1013
1014 2003-04-08: Platon Fomichev <platon@innotek >
1015 - USER32: o Treat LBUTTON press different from others in scrollbar. (WineX resync)
1016
1017 2002-04-08: knut st. osmundsen <Knut.Osmundsen@innotek >
1018 - COMDLG32: o Corrected default printer init. It was crashing with big
1019 printer setups and not handling multiple drivers per device
1020 correctly.
1021
1022 2002-04-08: Sander van Leeuwen <sandervl@innotek >
1023 - USER32: o Menu control: do not paint default menu item strings in bold
1024 if in OS/2 GUI mode
1025
1026 2003-04-04: Platon Fomichev <platon@innotek >
1027 - NTDLL: o Massive update. NTDLL internal tests, almost all
1028 string and conversion funcs. Corrected and beautified .def file
1029 - DOC: o Updated GCCBuildInstructions.txt for GCC 3.2.1
1030
1031 2003-04-03: Sander van Leeuwen <sandervl@innotek >
1032 - WINMM: o Different method for detecting DirectAudio (uniaud, sblive, c-media)
1033 o Added custom build function to disable DirectAudio (always use DART)
1034 o Waveout (DART): handle underrun properly (next buffer write
1035 and position after continueing)
1036
1037 2002-04-02: knut st. osmundsen <bird-odin-spam@anduin >
1038 - WIN32K: o Win32VersionValue in OptionalHeader.
1039
1040 2002-04-02: Yuri Dario <mc6530@mclink >
1041 - INCLUDE, GDI32, USER32, KERNEL32:
1042 o Corrected & changed headers + source updates
1043 - USER32: o Button: WM_SETTEXT fix
1044
1045 2003-04-02: Platon Fomichev <platon@innotek >
1046 - INCLUDE, KERNEL32:
1047 o Corrected HFILE definition as it is in Wine and in Win2k +
1048 header updates.
1049 - INCLUDE\EMXRUNTIME:
1050 o Modified EMX headers
1051 - LIB\EMXSUPPORT:
1052 o Modified EMX libraries
1053
1054 2003-04-01: Sander van Leeuwen <sandervl@innotek >
1055 - GDI32: o Fix for partial dibsection resyncs
1056
1057 2003-04-01: Platon Fomichev <stauff@innotek >
1058 - USER32: o Functions for setting custom frame/cd/window class names
1059
1060 2003-03-31: Dietrich Teickner <Dietrich_Teickner@t-online >
1061 - SHELL32: o Shell file operations update
1062
1063 2003-03-31: Platon Fomichev <platon@innotek >
1064 - KERNEL32: o Added vsnprintfW/snprintfW funcs for syncing with latest
1065 wine NTDLL
1066
1067 2003-03-31: knut st. osmundsen <bird-odin-spam@anduin >
1068 - PE2LX/WIN32K:
1069 o Custombuild feature for excluding dlls. Cleanups.
1070 o Option for making all object RW file.
1071 - KERNEL32: o Made Pe2Lx'ed DLLs work.
1072
1073 2003-03-28: Sander van Leeuwen <sandervl@innotek >
1074 - USER32: o Removed changes for window tracking (move/size) with full
1075 window dragging enabled (2003-03-27)
1076
1077 2003-03-27: Sander van Leeuwen <sandervl@innotek >
1078 - USER32: o Don't change focus when processing mouse button message if
1079 the top parent is a fake window
1080 o Changes for window tracking (move/size) with full window
1081 dragging enabled
1082 - KERNEL32: o Memory map updates
1083
1084 2003-03-26: Sander van Leeuwen <sandervl@innotek >
1085 - KERNEL32: o WaitForSingleObject/(Msg)WaitForMultipleObject fixes to
1086 prevent thread priorities from being accidentally boosted to
1087 time critical
1088
1089 2003-03-22: Sander van Leeuwen <sandervl@innotek >
1090 - USER32: o If an application doesn't validate the update region
1091 while processing WM_PAINT, then we must remember it for
1092 the next time.
1093 Windows will only send a WM_PAINT once until another part of
1094 the window is invalidated. Unfortunately PM keeps on sending
1095 WM_PAINT messages until we validate the update region.
1096 This affects UpdateWindow, RedrawWindow, GetUpdateRgn, GetUpdateRect,
1097 BeginPaint and the next WM_PAINT message.
1098
1099 2003-03-20: Sander van Leeuwen <sandervl@innotek >
1100 - USER32: o WindowFromPoint: only send WM_NCHITTEST to windows belonging
1101 to the current thread
1102 o Changes for fake windows. Moved them into a seperate C++ class
1103 and overload some methods to correct the behaviour.
1104
1105 2003-03-18: Platon Fomichev <platon@innotek >
1106 - USER32: o Shift/Ctrl/Alt+Numpad keys illegal behaviour. Generic numpad
1107 keys like (/*-+) produced garbage.
1108
1109 2003-03-12: Platon Fomichev <stauff@innotek >
1110 - USER32: o GetKeyState and GetAsyncKeyState fixes for numpad keyboard
1111
1112 2003-03-06: Sander van Leeuwen <sandervl@innotek >
1113 - KERNEL32: o Don't change the stack alignment if the thread has less than
1114 128 kb stack.
1115 - WINMM: o Improved accuracy of waveIn/OutGetPosition. (use FPU to prevent
1116 rounding errors)
1117 o Added code to dump played wave data to disk (disabled by default)
1118
1119 2003-03-06: knut st. osmundsen <Knut.Osmundsen@innotek >
1120 - KERNEL32: o The WIN32LOG_FILEBASE env.var. can be used to point the logfile
1121 elsewhere. "%d.log" is added to the value.
1122 o Print szLineExceptionType too in exception dump.
1123 o Custombuild apis for entering and leaving Odin thread context.
1124 o Added functions to quickly get the PID & TID
1125
1126 2003-03-05: knut st. osmundsen <bird-odin-spam@anduin >
1127 - MAKE: o Experimental OTHERS variable.
1128 o Full source path to compilers.
1129
1130 2003-03-05: Sander van Leeuwen <sandervl@innotek >
1131 - WINMM: o timeBegin/EndPeriod: check for upper and lower boundaries
1132 o waveoutGetPosition: return 0 if stream is not active (DART)
1133 o waveinGetPosition: return 0 if stream is not active (DART)
1134 o Don't print a warning for CALLBACK_NULL callbacks
1135 o Added ODIN_waveInSetFixedBuffers, renamed SetFixedWaveBufferSize
1136 to ODIN_waveOutSetFixedBuffers. Used to tell WINMM to use
1137 the waveOutWrite buffer size for the DART buffers.
1138 o Don't pause the wave stream if no buffers left to add. Let
1139 DART detect the underrun condition.
1140
1141 2003-03-04: Platon Fomichev <stauff@innotek >
1142 - USER32: o We did not pay attention to numlock state on numpad keyboard.
1143
1144 2003-03-03: Dietrich Teickner <Dietrich_Teickner@t-online >
1145 - GDI32: o ExtTextOutA: copy string and force zero termination
1146 - SHELL32: o Minor updates
1147
1148 2003-03-03: Sander van Leeuwen <sandervl@innotek >
1149 - WSOCK32: o Removed wrong checks for invalid address parameters in
1150 sendto & recvfrom
1151
1152 2003-03-01: Sander van Leeuwen <sandervl@innotek >
1153 - KERNEL32: o ExitProcess: turn off hard errors & exception popups before
1154 calling O32_ExitProcess (release build only)
1155 o DeleteFile: when deleting a .lnk file, verify if it's a shell
1156 link object file. if so, delete WPS object
1157 o ODIN_DisableFolderShellLink added: disable object creation in
1158 Odin folder. Desktop shortcuts will still be created as WPS
1159 objects on the desktop.
1160 o OSLibWinCreateObject: create shelllink file with WPS object id
1161 - USER32/KERNEL32:
1162 o Move OSLibWinCreateObject to KERNEL32
1163 - SHELL32: o Shelllink: use kernel32 file functions instead of those from
1164 the VAC crt
1165
1166 2003-02-28: Sander van Leeuwen <sandervl@innotek >
1167 - SRC\makefile:
1168 o Skip msvcrt & crtdll for now. Causes too many problems with
1169 Odin builds.
1170 - KERNEL32: o Fixed CreateProcessA regression (Lotus Notes)
1171 o Check for invalid data while measuring the CPU speed. DosTmrQueryTime
1172 isn't very reliable (on laptops).
1173 o ExitProcess: don't remove our exception handler too early
1174 o Map ERROR_PATH_NOT_FOUND (OS/2) to ERROR_INVALID_NAME
1175 - WINMM: o Protect linked timer list with VMutex object.
1176
1177 2003-02-28: knut st. osmundsen <Knut.Osmundsen@innotek >
1178 - MAKEFILES:
1179 o New rule cleanall which tries to wipe out all the output.
1180 o ODIN32_LIB and ODIN32_BIN is now the same for all the CCENVs.
1181 (AFAIK we no longer try compile stuff with many compiles, but
1182 stick too the once which are working, VAC3 or EMX that is.)
1183 o Linenumbers in release mode.
1184 o Pass full source file names to compilers so the debugger easier
1185 will find the the right source.
1186 o Defined STATIC_CRT in src/win32k/utils.
1187 o Profiling: Link with kProfile.lib when DEBUG= and PROFILE=1.
1188 Configured this for EMX targets too. (state: Experimental)
1189
1190 2003-02-28: Platon Fomichev <stauff@innotek >
1191 - USER32: o Wrong checks on restoration point remembering. Maximizing
1192 window from PM icon using keyboard or menu produced wrong
1193 controls.
1194
1195 2003-02-27: Sander van Leeuwen <sandervl@innotek >
1196 - KERNEL32: o VirtualAlloc: fixed handling of commit for a page range
1197 that is not entirely reserved (contains committed pages)
1198 o Don't call WinMessageBox in the unhandled exception filter as
1199 that can hang PM.
1200
1201 2003-02-27: Platon Fomichev <stauff@innotek >
1202 - USER32: o Illegal PM sequence of maximizing from icon state corrected.
1203 Inter-thread controls change caused PM lockups. Rewrote
1204 PM window frame controls manipulation procedure.
1205
1206 2000-02-27: Achim Hasenmueller <achimha@innotek >
1207 - KERNEL32: o MoveFile: detect if source and target file names are on a
1208 different drive and use DosCopy/DosDelete instead of DosMove
1209 in this case.
1210
1211 2003-02-26: Sander van Leeuwen <sandervl@innotek >
1212 - RICHED32: o Rewrote control; no longer creates a child Edit window as this
1213 doesn't happen in Windows and breaks subclassing
1214 o EM_CHARFROMPOS is different for RichEdit controls (lParam is
1215 a POINTL pointer)
1216 o Implemented EM_FINDWORDBREAK
1217
1218 2003-02-25: Sander van Leeuwen <sandervl@innotek >
1219 - USER32: o Bugfix for WPS object creation
1220 - RICHED32: o Added support for EM_SETCHARFORMAT (text & background color)
1221 & EM_SETBKGNDCOLOR.
1222
1223 2003-02-24: Sander van Leeuwen <sandervl@innotek >
1224 - WS2_32: o Implemented non-overlapped WSARecv & WSASend.
1225 - WSOCK32: o check for local host name in gethostbyname. if identical,
1226 then use "localhost" instead
1227 - KERNEL32: o GetFullPathNameA: don't change the input string
1228 o Added ODIN_IsWin32App export to determine whether an app
1229 is a win32 or os2 binary.
1230 - USER32: o Changes for creating WPS objects (win32/os2 app)
1231 o Added function to convert an icon group in memory
1232 - SHELL32: o Convert win32 icon file to os2 format when creating a shell link.
1233
1234 2003-02-23: knut st. osmundsen <bird@anduin >
1235 - TOOLS/ALIASDEF:
1236 o A tool for generating alias records from an .def file.
1237 Something I wrote will playing with NTDLL here.
1238
1239 2003-02-22: Sander van Leeuwen <sandervl@innotek >
1240 - WS2_32: o Added WSARecv(From) & WSASend(To) stubs
1241
1242 2003-02-22: Platon Fomichev <stauff@innotek >
1243 - USER32: o Restoring maximized window from iconic state caused window
1244 frame controls to behave badly. General out-of-sync problems
1245 with frame controls. Invisibility of frame controls after
1246 lots of minimizing/restoring.
1247
1248 2003-02-22: Dietrich Teickner <Dietrich_Teickner@t-online >
1249 - SHELL32: o Shell file operation updates
1250
1251 2003-02-20: knut st. osmundsen <Knut.Osmundsen@innotek >
1252 - KERNEL32: o Added custombuild API for registering a callback for LX Dll
1253 loading thru LoadLibrary*().
1254
1255 2003-02-18: Sander van Leeuwen <sandervl@innotek >
1256 - KERNEL32: o Touch last stack page using ESP. (just in case)
1257 o Cleaned up memory map code.
1258
1259 2003-02-17: Sander van Leeuwen <sandervl@innotek >
1260 - KERNEL32: o FindFirstFile: return ERROR_FILE_NOT_FOUND if DosFindFirst
1261 returns ERROR_PATH_NOT_FOUND
1262 - USER32: o Single Alt down + up always generates WM_SYSKEYUP; reset
1263 iMenuSysKey on WM_KEYUP, so the system menu isn't accidentally
1264 activated.
1265
1266 2003-02-16: Sander van Leeuwen <sandervl@innotek >
1267 - USER32: o ToAscii: fixed wrong checks for VK_SHIFT/CONTROL/MENU
1268 o Fixed broken implementation of GetKeyState, GetAsyncKeyState
1269 and GetKeyboardState
1270 o Do not translate WM_KEYUP to WM_SYSKEYUP if AltGr released
1271 and KC_LONEKEY flag is set. (only for Alt)
1272 o GetKeyboardState, GetKeyState, GetAsyncKeyState:
1273 pretend left Ctrl key is pressed if AltGr down.
1274 - PMKBDHK: o Special handling of AltGr key. Must send Ctrl key messages
1275 like Windows.
1276
1277 2003-02-14: Dietrich Teickner <Dietrich_Teickner@t-online >
1278 - SHELL32: o Shell file operation updates
1279
1280 2003-02-13: Sander van Leeuwen <sandervl@innotek >
1281 - USER32: o Handle SetFocus(0) correctly: keystrokes are converted into
1282 WM_SYSKEYDOWN/(WM_SYSCHAR)/WM_SYSKEYUP messages
1283 o DrawFocusRect: conflict between SetROP2(R2_XORPEN) and
1284 SetBkMode(TRANSPARENT); commenting out the latter for now.
1285 - SHELL32: o Control panel Wine resync
1286 - KERNEL32: o Added ODIN_SetTIBSwitch function to override TIB selector
1287 switching.
1288 o Forward RtlZero/Move/FillMemory to ntdll
1289 - NTDLL: o Cleaned up
1290
1291 2003-02-11: Sander van Leeuwen <sandervl@innotek >
1292 - USER32: o When a window is activated by a mouse click, we must set
1293 focus to the client window (and not the frame!).
1294 o GetSysColor: always return cached colors
1295
1296 2003-02-10: Sander van Leeuwen <sandervl@innotek >
1297 - KERNEL32: o Touch all stack pages we skip in the out of stack workaround for
1298 16 bits code. Jumping over the guard page causes a protection
1299 violation exception.
1300 - USER32: o EnumThreadWindows: must return windows in Z-order
1301 (experiments show EnumThreadWindows in NT4 behaves like this)
1302
1303 2003-02-07: Sander van Leeuwen <sandervl@innotek >
1304 - DDRAW/NTDLL:
1305 o Rename resource directory
1306 - USER32: o Don't save position (for restore) in SetWindowPos if window
1307 is minimized .
1308
1309 2002-02-06: Dietrich Teickner <Dietrich_Teickner@t-online >
1310 - USER32: o Edit control: fixed heap corruption in undo buffer
1311
1312 2003-02-06: Sander van Leeuwen <sandervl@innotek >
1313 - ODINCRT: o Rewrote critical sections to be safe on SMP systems
1314 (previous implementation had one flaw that happened
1315 to be triggered often on my SMP machine)
1316 - USER32: o Edit control: Always kill the timer if in captured state.
1317 The app can call ReleaseCapture before we get the WM_LBUTTONUP
1318 message.
1319 o Send WM_QUERYNEWPALETTE when a window receives focus
1320 o Translate WM_REALIZEPALETTE into WM_PALETTECHANGED
1321 - GDI32: o Must manually correct y coordinates for DIB section blit since
1322 we reset the y inversion back to 0.
1323 (subtract twice the viewport & windows origin y)
1324 o CreateDIBSection: don't get palette from DC if bitmap bits provided
1325
1326 2003-02-05: Sander van Leeuwen <sandervl@innotek >
1327 - KERNEL32: o Check ESP when calling the entrypoint of a newly created thread.
1328 If close to a 64kb boundary, adjust it. Some ancient 16 bits
1329 code will crash if there's not enough stack left.
1330
1331 2003-02-04: Sander van Leeuwen <sandervl@innotek >
1332 - KERNEL32: o Support DuplicateHandle for threads
1333 o Fixed command line parsing regression
1334 - DDRAW: o FS corruption in SetCooperativeLevel
1335
1336 2003-02-02: Sander van Leeuwen <sandervl@innotek >
1337 - INCLUDE\makefiles:
1338 o Define STATIC_CRT for all exe targets
1339
1340 2003-01-30: Sander van Leeuwen <sandervl@innotek >
1341 - KERNEL32: o CreateProcess changes for parsing the application name
1342 and command line strings
1343
1344 2003-01-29: Sander van Leeuwen <sandervl@innotek >
1345 - USER32: o OS/2 Look & Feel is now default
1346 o Use OS/2 colors again in OS/2 L&F mode
1347
1348 2003-01-28: Sander van Leeuwen <sandervl@innotek >
1349 - USER32: o Don't use DrawFocusRect from WGSS anymore
1350 - GDI32: o Fixes for InternalTextOutA without y-inversion (not activated)
1351
1352 2003-01-27: Platon Fomichev <platon@innotek >
1353 - INCLUDE: o Illegal calling convention specified for _System calling
1354 convention in headers for GCC. Bugs in ASM code for SetFS
1355 RestoreFS.
1356 - NTDLL: o In C++ files specify extern "C" for _System calling convention
1357 as well. Affected _DLL_InitTerm
1358
1359 2003-01-23: knut st. osmundsen <bird-odin-spam@anduin.net>
1360 - TOOLS\COMMON, TOOLS\WRC\U:
1361 o Define STATIC_CRT so wrapper headers doesn't kick in.
1362
1363 2003-01-23: Sander van Leeuwen <sandervl@innotek >
1364 - INCLUDE\*.mk:
1365 o Don't use include\incl_vac for statically linked targets
1366 (e.g. tools)
1367 - ODINCRT: o Added wrappers for new & delete operators
1368 - ODINPROF, IPLOG, OLE32\REGSVR32;
1369 o Link with static CRT library
1370 - MAKE\setup.mak:
1371 o Only add include\incl_vac if not building an odin32 app
1372
1373 2003-01-23: Platon Fomichev <platon@innotek >
1374 - DOC: o Added build instructions for GCC
1375 - NTDLL: o Made initntdll a C file to remove C++ GCC stuff for now
1376 and added RtlBitmap support from Wine.
1377 - INCLUDE: o Correced odinlx.h header - problem while compiling with
1378 C compiler.
1379
1380 2003-01-22: Sander van Leeuwen <sandervl@innotek >
1381 - ODINCRT: o Renamed wrapper functions
1382 - INCLUDE\incl_vac:
1383 o Changed VAC headers to rename memory and file functions
1384 (those that change FS when called)
1385 - MAKE, INCLUDE\*.mk:
1386 o Add include\incl_vac first to include path (/I)
1387 - KERNEL32: o Removed WriteLogError
1388
1389 2003-01-22: Platon Fomichev <platon@innotek >
1390 - NTDLL: o Dll load/unload changes
1391
1392 2003-01-21: Sander van Leeuwen <sandervl@innotek >
1393 - DDRAW: o Removed dependency on dive.dll. Load it on demand.
1394 - USER32: o Moved debug wrapper for DDE to dde.cpp
1395
1396 2003-01-19: Sander van Leeuwen <sandervl@innotek >
1397 - KERNEL32: o Only load LVM.DLL when we actually need it.
1398 o CreateProcess bugfix for thread id if launched directly
1399 o CreateFile returns ERROR_ALREADY_EXISTS if file not found
1400 and CREATE_NEW
1401 o Check and correct process type in thread wrapper. WinCreateMsgQueue
1402 fails for non-PM apps. We set it to PM in the VIO loader, but
1403 apparently it can be changed back.
1404
1405 2003-01-18: Sander van Leeuwen <sandervl@innotek >
1406 - KERNEL32: o FindFirstFile must return ERROR_FILE_NOT_FOUND when
1407 the specified file or directory isn't present.
1408 (OS/2 returns ERROR_NO_MORE_FILES)
1409
1410 2003-01-16: Sander van Leeuwen <sandervl@innotek >
1411 - KERNEL32: o Fixed heap corruption in CreateProcess (with current dir)
1412 - USER32: o Only the combo bitmap header is wrong; the others are fine
1413 (regression from 2003-01-05)
1414
1415 2003-01-16: Platon Fomichev <platon@innotek >
1416 - NTDLL: o Changes for building dll with GCC
1417
1418 2003-01-15: Platon Fomichev <platon@innotek >
1419 - MSVCRT: o Updates
1420 - VERSION: o Don't use crtdll
1421 - INCLUDE: o Updates for GCC builds
1422
1423 2003-01-14: Sander van Leeuwen <sandervl@innotek >
1424 - WINMM: o Delete all wave object on unload
1425 o Fix linked list synchronization
1426
1427 2003-01-13: Sander van Leeuwen <sandervl@innotek >
1428 - KERNEL32: o Don't allocate selectors anymore. Allocate tiled memory
1429 and call Dos32FlatToSel.
1430 o Get default stack size from PE header.
1431 o Thread handles not closed properly.
1432
1433 2003-01-12: Sander van Leeuwen <sandervl@xs4all >
1434 - KERNEL32: o Ported QueryDosDeviceA/W from Rewind
1435 Return all valid drive letters in QueryDosDeviceA/W(NULL)
1436 Return full device name for drive letters
1437 o Implemented IOCTL_SCSI_GET_CAPABILITIES
1438 o Do not fail CDIO init if media not present
1439
1440 2003-01-10: Sander van Leeuwen <sandervl@innotek >
1441 - KERNEL32: o Don't close handle in CloseHandle if HANDLE_FLAG_PROTECT_FROM_CLOSE
1442 flag set.
1443 o Implemented Set/GetHandleInformation
1444 o CreateFile: create handles that are not inherited by child
1445 processes by default
1446 Only enable inheritance if specified in security struct
1447 o Create(Named)Pipe: default = not inherited by child processes
1448 Only enable inheritance if specified in security
1449 struct.
1450 o DuplicateHandle; set inheritance flag with SetHandleInformation
1451 o CreateProcess: support for setting stdin/out/err handles
1452 of child process
1453 o PeekNamedPipe: - return ERROR_BROKEN_PIPE when used for unnamed
1454 pipes (which is not allowed in OS/2)
1455 (workaround)
1456 - USER32: o ScrollDC bugfix; must convert rectangle returned by GetClipBox
1457 to device coordinates
1458
1459 2003-01-10: Platon Fomichev <platon@innotek >
1460 - MSVCRT: o Updates
1461 - CRTDLL: o Wine port (forwarder dll to msvcrt)
1462
1463 2003-01-10: Herwig Bauernfeind <herwig.bauernfeind@aon >
1464 - ODINBUG: o Updated to version 0.5.8
1465
1466 2003-01-08: Sander van Leeuwen <sandervl@innotek >
1467 - KERNEL32: o SetTimeZoneInformation: save info in registry:
1468 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
1469 o GetTimeZoneInformation: read info from registery if present;
1470 otherwise call WGSS
1471 o RegQueryValue(Ex)W: workaround to return bytes for strings
1472 must always be executed when lpcbData != NULL.
1473
1474 2003-01-07: Sander van Leeuwen <sandervl@innotek >
1475 - USER32: o Convert color masks to b&w in CreateIconIndirect
1476 - RICHED32: o Don't forward WM_NCCALCSIZE to Edit control or else the
1477 richedit parent's client area is resized. We already
1478 resize the Edit child in the WM_SIZE handler.
1479 o Wrong call to ctordtorTerm; removed it and ctordtorInit
1480 since there's no C++ code in that dll anyway.
1481 - ODININST: o Parse TZ environment variable and save timezone information
1482 to the registry. (default is CET if not found)
1483
1484 2003-01-06: Sander van Leeuwen <sandervl@innotek >
1485 - WSOCK32: o Better method to cancel all async requests in WSACleanup
1486 - USER32: o Invalidate window when it's resized and SWP_NOCOPYBITS
1487 is specified.
1488 o Fixed icon leak in IconForWindow method (call LoadImageA
1489 with LR_SHARED flag to reuse icons)
1490
1491 2003-01-06: Platon Fomichev <platon@innotek >
1492 - ConfigureGCC.cmd,
1493 INCLUDE\win\msvcrt,
1494 INCLUDE\emx makefiles
1495 MSVCRT:
1496 o Wine port of MSVCRT (build with GCC)
1497
1498 2003-01-05: Sander van Leeuwen <sandervl@innotek >
1499 - KERNEL32: o Added ODIN_SetDllLoadCallback; install a dll load hook
1500 that's called as soon as all exports are processed
1501 (so before any code is executed that can use the dll)
1502 o Added ODIN_SetProcAddress; override a name or ordinal export
1503 - USER32: o Corrected wrong bitmap headers in resources
1504 o Added workaround for handling black & white cursors
1505
1506 2002-01-05: Dietrich Teickner <Dietrich_Teickner@t-online >
1507 - USER32: o Return MA_NOACTIVATE in listbox WM_MOUSEACTIVATE handler.
1508 (apparently not necessary anymore in Wine; so probably
1509 caused by something else)
1510
1511 2003-01-04: Sander van Leeuwen <sandervl@innotek >
1512 - USER32: o Corrected drawing of menubar in OS/2 L&F mode (when highlighted)
1513 o Fixed handling of single ALT to select menu
1514 o Use different color for highlighted menus (OS/2 L&F)
1515 - GDI32: o Removed broken handling of TA_RIGHT in TextOut
1516 o Flip bitmap in GetDIBits if height is negative
1517 o Only return bitfield data in GetDIBits if compression set
1518 to BI_BITFIELDS (and lpvBits is not NULL)
1519
1520 2003-01-03: Sander van Leeuwen <sandervl@innotek >
1521 - USER32: o Merged Rewind menu control
1522 o Fixed GetSystemMetrics(SM_CXMENUCHECK); should be 13
1523 o Always use windows system colors (even in OS/2 L&F mode)
1524
1525 2002-01-03: Dietrich Teickner <Dietrich_Teickner@t-online >
1526 - KERNEL32: o Convert timezone names in Set/GetTimeZoneInformation as
1527 WGSS expects/returns ascii strings instead of unicode.
1528
1529 2003-01-02: Sander van Leeuwen <sandervl@innotek >
1530 - KERNEL32: o Set the codepage of the message queue for each new thread
1531 that is created. (done for the main thread in user32)
1532 - USER32: o Fix for composite keyboard character translation
1533 (e.g. ^ on german keyboards)
1534 o SystemParametersInfoA fix for SPI_GETNONCLIENTMETRICS in
1535 OS/2 L&F (font height must be negative)
1536 o Deactivate window when hiding it to force PM to switch focus.
1537 (Note: might cause regressions!)
1538 o Fixed behaviour of SetFocus(NULL); should return the current
1539 focus window.
1540
1541 2003-01-01: Sander van Leeuwen <sandervl@innotek >
1542 - USER32: o Fixes for windows with an iconless class and WS_EX_DLGMODALFRAME
1543 style. (they shouldn't have a system menu)
1544 (either right after creation or when the app add this extended
1545 style later on)
1546 o Remove minimize or maximize controls when the app requests it
1547 (OS/2 GUI mode)
1548 - GDI32: o Cleaned up SetDIBitsToDevice
Note: See TracBrowser for help on using the repository browser.