source: trunk/changelog@ 21606

Last change on this file since 21606 was 21606, checked in by dmik, 15 years ago

release: Bumped build number and updated changelog for 0.6.21606.

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