source: trunk/changelog@ 21921

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

Release 0.8.1.

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