source: trunk/changelog@ 22057

Last change on this file since 22057 was 22057, checked in by dmik, 13 years ago

Release 0.8.7.

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