source: trunk/changelog@ 2248

Last change on this file since 2248 was 2248, checked in by phaller, 26 years ago

.

File size: 40.0 KB
RevLine 
[2248]1 /* $Id: changelog,v 1.587 1999-12-29 13:04:07 phaller Exp $ */
[1567]2
[2248]3 99-12-29: Patrick Haller <phaller@gmx.net>
4 - INCLUDE: ODINWRAP: new macros to save FS register for callback registration
5 - WINMM: removed memory leak for win32 tib fs selectors in DartWaveOut::callback
6
[2243]7 99-12-29: Sander van Leeuwen <sandervl@xs4all.nl>
8 - WINMM: Created wrappers for mci* apis (to save/restore FS)
9 NOTE: You must include os2mewrap.h instead of os2me.h
[2247]10 - USER32: Fixed PostThreadMessage (RealPlayer G2 install almost works)
11 - KERNEL32: Removed logging from icon & cursor (group) conversion
12 (compile with DEBUGALL=1 to enable it)
[2243]13
[2233]14 99-12-28: Vit Timchishin <tvv@sbs.kiev.ua>
15 - USER32: Listbox fix; Commented out 'if (index == oldsel) return LB_OKAY;'
16 in LISTBOX_SetSelection as this may prevent the control from
17 sending a notification after a change with notify disabled.
18 (i.e. MoveCarret)
19
[2227]20 99-12-28: Sander van Leeuwen <sandervl@xs4all.nl>
21 - WININET: Created stub dll
[2231]22 - KERNEL32: Create Software\Microsoft\Windows NT\CurrentVersion registry key + necessary values
23 Put all version information in include\versionos2.h
24 Faked GetSystemPowerStatus (always returns online status
25 for desktop system)
[2236]26 - SHELL32: Implemented PathBuildRootW, PathRemoveBackslashW, PathFileExistsW,
27 StrChrA & StrRChrW
28 - SHLWAPI: Created more forwarders to shell32 apis
[2227]29
[2222]30 99-12-28: Jens Wiessner <wiessnej@rfi.de>
31 - avifil32, comdlg32, crtdll, ddraw, dinput, dplay, dplayx, imagehlp,
32 mpr, msvcrt(20/40), msvfw32, olecli32, oledlg, olesvr32, psapi,
33 rasapi32, version:
34 Added commented-out exports and changed ordinals to match
35 with the dlls from Windows NT 4.0 ServicePack 6 or Windows
36 98SE
37 NOTE: Requires recompile of all Odin dlls & any Odin32 apps.
38
[2218]39 99-12-27: Jens Wiessner <wiessnej@rfi.de>
40 - WINSPOOL: Added stubs
41 - ADVAPI32: Added crypto stubs
42
43 99-12-27: Vit Timchishin <tvv@sbs.kiev.ua>
44 - KERNEL32: Implemented preliminary codepage support
45 - USER32: Added code to init for codepage support
46 Fixed combo box bugs (COMBO_Command; use lParam for hwnd compares)
47
[2210]48 99-12-27: Christoph Bratschi <cbratschi@datacomm.ch>
49 - USER32: fixed SetWindowPos
50
[2209]51 99-12-27: Sander van Leeuwen <sandervl@xs4all.nl>
52 - USER32: Fixed GetActiveWindow (also fixes problem with mouse messages
53 in FreeCell)
54 Fixed PeekMessageW (used old way of calling OSLibWinPeekMsg)
55 Changed translation of message filters (still not 100% correct)
56 Fixed bugs in OSLibPeekMessage
[2220]57 - KERNEL32: Enable write access for code sections which have this flag
58 set in the PE image (fixes crash in WinDVD)
[2209]59
[2203]60 99-12-26: Christoph Bratschi <cbratschi@datacomm.ch>
61 - USER32: implemented WM_NCHITTEST, added WM_SYSCOMMAND handling
62 ported DIALOG_IsAccelerator
63 implemented Get/SetMessageExtraInfo
64 extended DefWindowProcA handling
65 several other bug fixes
66 - COMCTL32: changed non-client handling
67
[2195]68 99-12-24: Sander van Leeuwen <sandervl@xs4all.nl>
69 - USER32: Fixed bug in OSLibWinQueryQueueStatus (uninitialized local variable)
70 Changed message handling. Messages are translated in Get/PeekMessage
71 now. (or in the PM window handler, if it was sent directly)
72 TranslateMessage now translates WM_(SYS)KEYDOWN/UP to
73 WM_(SYS)(DEAD)CHAR
74 Fixed ChildWindowFromPointEx
75 - CRTDLL: Removed excessive logging (compile with DEBUGALL=1 to enable it)
76 - SRC\MAKEFILE: Included dplayx
77
[2194]78 99-12-24: Markus Montkowski <mmontkowski@gmx.de>
79 - dplayx: compiles and links now
80
[2190]81 99-12-22: Christoph Bratschi <cbratschi@datacomm.ch>
82 - USER32: fixed WinGetKeyState in WM_MOUSEMOVE (WinAmp's equalizer works now fine)
83
[2186]84 99-12-21: Jens Wiessner <wiessnej@rfi.de>
85 - MSVCRT: Updated msvcrt20 & msvcrt40 def files
86
[2183]87 99-12-21: Christoph Bratschi <cbratschi@datacomm.ch>
88 - USER32: merged controls with WINE 991212
89 fixed listbox WM_SETREDRAW bug
90
[2175]91 99-12-21: Markus Montkowski <mmontkowski@gmx.de>
92 - ddraw: Some cleanup in surface handling
93 more colorconversion code:
94 8bit to all hicolormodes(16,24,32) and
95 between the highcolormodes
96 Do Colorfills for the above modes.
[2179]97 Removed inhertiance from IBASE in DDRectangle
[2175]98
[2171]99 99-12-21: Sander van Leeuwen <sandervl@xs4all.nl>
100 - ADVAPI32: Fixed some bugs in service.cpp; implemented some service apis
101 - INCLUDE\WIN: Added winsvc.h; removed service definitions from winbase.h & winreg.h
[2179]102 - NTDLL/CRTDLL: Moved all CRT functions into CRTDLL
103 CRTDLL should contain all shared RTL functions (in addition
104 to those present in the win32 version); this is more
105 consistent than putting half the rtl functions in NTDLL
106 and the rest in CRTDLL.
[2180]107 - CRTDLL: Fixed memory allocation bug (CRTDLL_calloc called calloc, while
108 free calls HeapFree; everything uses private CRTDLL heap now)
[2179]109 - MSVCRT: Removed all forwarders from def file. Link with CRTDLL instead.
110 NOTE: Non-existant forwarders don't generate errors when loading
111 this dll!!!
112 Linking with a lib makes sure the import really exists.
113 - KERNEL32: Moved memmove to NTDLL (forwarded to CRTDLL)
114 - ODINCRT: Added wrappers for file io functions (to prevent FS corruption)
[2171]115
[2169]116 99-12-20: Rene Pronk <R.Pronk@twi.tudelft.nl>
117 - WINMM: Bugfixes in waveOutOpen (flags) for winamp
118
[2167]119 99-12-20 Markus Montkowski <mmontkowski@gmx.de>
120 - USER32: Fixed Coordinate conversion in WM_HITTEST (don't use handles as a coordinates)
121
[2161]122 99-12-20: Christoph Bratschi <cbratschi@datacomm.ch>
123 - USER32: changed icon title font size in SystemParametersInfo to 12
124 fixed DrawIcon/DrawIconEx
125 fixed GetIconInfo (still bugs in load/create code)
126
[2169]127 99-12-20: Sander van Leeuwen <sandervl@xs4all.nl>
[2154]128 - CRTDLL: Added bsearch from EMX
[2169]129 - MSVCRT: Copy dlls into bin directory. Most apps seem to work
[2154]130 (Notes, solitaire, winhlp32)
[2158]131 - NTDLL: Added qsort, ftol, CIpow, ltoa, ultoa
132 (ftol fixes black Notes toolbars)
[2154]133
[2169]134 99-12-20: Jens Wiessner <wiessnej@rfi.de>
[2151]135 - MSVCRT: Added stubs
136
[2139]137 99-12-19: Christoph Bratschi <cbratschi@datacomm.ch>
138 - USER32: fixed child positioning
139 removed CS_SIZEREDRAW, do it manually if window really needs it
140 handled in WM_CALCVALIDRECTS, PM aligns windows top-left
141 -> much faster, Calc: radiobuttons are at the right place
142 RegEdit: treeview redraw problems fixed
143
[2136]144 99-12-19: Sander van Leeuwen <sandervl@xs4all.nl>
145 - ADVAPI32/NTDLL: Forward sid apis to ntdll (need to check return
146 type of some Rtl SID apis (bool or status dword?))
[2142]147 Moved Service apis into separate sourcefile
[2149]148 Implemented some service apis (not completely)
[2137]149 - KERNEL32: Fix for loading images (RSRC_LOAD)
[2142]150 Implemented FindResourceExA/W
151 CreateProcessW bugfix (string conversion)
[2148]152 FormatMessageA/W bugfix (wrong calling convention for
153 WVSPRINTFAPROC type (should be WIN32API!) -> fixes crash
154 in regedit
[2142]155 - USER32: SendMessageW bugfix
[2136]156
[2127]157 99-12-18: Achim Hasenmueller <achimha@innotek.de>
158 - COMCTL32: Merged with latest WINE 991212 code
159
[2116]160 99-12-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
161 - KERNEL32: Partially implemented GetThreadContext, Read/WriteProcessMemory
162
[2113]163 99-12-18: Christoph Bratschi <cbratschi@datacomm.ch>
164 - USER32: added MDI menu window switching
165 fixed ChildWindowFromPointEx
166 fixed WM_MDIDESTROY
167
[2104]168 99-12-18: Sander van Leeuwen <sandervl@xs4all.nl>
169 - MSACM32: Compile fixes (internal.cpp)
[2108]170 - USER32: WindowFromPoint fix (return 0 if no windows found, not the desktop wnd handle)
171 SetMenuItemInfoA bugfix (for novamatic) (still not completely
172 implemented though)
[2110]173 - AVIFIL32: updated with the latest code from Wine 991212.
[2112]174 - KERNEL32: Partly implemented GetCurrencyFormatA/W (not correct, but
175 to make apps happy)
[2130]176 Added handlemanager class for tokens and HMHandleGetUserData
177 export to query the userdata dword of a handle.
[2123]178 - NTDLL: Partially implemented some Token & SID apis in order to get
179 MS Office 2000 install to work.
[2104]180
[2102]181 99-12-18: Jens Wiessner <wiessnej@rfi.de>
182 - MSACM32: Updated with latest Wine code (991212)
[2108]183 - CRTDLL: Removed the ERRNO Defs from CRTINC.H and included ERRNO.H
[2102]184
[2098]185 99-12-17: Christoph Bratschi <cbratschi@datacomm.ch>
186 - USER32: WM_NOTIFYPARENT: map cursor pos
187 implemented MDI cascade/tile
188
[2095]189 99-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
190 - KERNEL32: Delete thread's THDB structure when it quits
191 - USER32: Hook removal bugfix
192
193 99-12-17: Edgar Buerkle <Edgar.Buerkle@gmx.net>
194 - INCLUDE\winconst.h/wintypes.h/win\winbase.h: Added definitions
195 - KERNEL32: Set DEBUG_PROCESS flag for DEBUG_ONLY_THIS_PROCESS flag
196 in CreateProcess (open32 doesn't support the latter flag)
197
[2091]198 99-12-16: Christoph Bratschi <cbratschi@datacomm.ch>
199 - USER32: fixed 'dancing characters' in edit control
200 ported GrayString from WINE
201 desktop: terminate string in WM_GETTEXT
[2098]202 free timers after WM_DESTROY
[2091]203 - GDI32: several bug fixes for text output functions
204 implemented PolyTextOutA/W
205
[2082]206 99-12-14: Sander van Leeuwen <sandervl@xs4all.nl>
207 - USER32: Tasklist fix
208 Rewrote SendMessage handling; Uses WinSendMsg now if window
209 is created by a different process/thread.
210 Started with port of Wine hook code
211 ShowWindowAsync calls ShowWindow now (not correct, but better than nothing)
212 - KERNEL32: Added GetTHDBFromThreadId (used in USER32) & link THDB structures during creation
[2087]213 Put back old interlocked code (Wine port + InterlockedExchange fix)
[2082]214 - GDI32: Extra logging for Create*Rgn apis
215
[2079]216 99-12-13: Edgar Buerkle <Edgar.Buerkle@gmx.net>
217 - KERNEL32: Added null pointer checks in lstrcatA/W
218 - USER32: Removed unicode to ascii translation during MDI child creation
219 (message translation code already takes care of this)
220
[2075]221 99-12-13: Sander van Leeuwen <sandervl@xs4all.nl>
222 - KERNEL32: Fixed performance problem in mmap.cpp
223 Report correct dll when exe loading fails
[2079]224 Fixed command line bug in CreateProcess (if app & cmd line
225 are specified, skip exe name in cmd line)
[2075]226 - INCLUDE\WIN\winnt.h: Header fixes
227 - Porting.txt: Fixed sample makefile (you need to add -D__i386__ as compiler option)
[2079]228 - USER32: NotifyParent bugfix (use id & handle of 1st child window)
229 Added WM_INITMENU message support
230 Experimental CS_PARENTDC support (disabled for now)
[2075]231
[2060]232 99-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
[2067]233 - KERNEL32: Fixes for on-demand page loader; currently disabled by
234 default because it interferes with debugging (too many
235 exceptions are generated)
236 To enable it undefine COMMIT_ALL in kernel32\winimagepeldr.cpp.
[2068]237 Dll unload fix for PE loader (fixes crash when Notes quits)
[2070]238 - PE2LX: Don't link with odincrt -> 'Not enough storage to complete
239 initialization' error. Reason unknown.
240 - INCLUDE\string.h: Use original strncpy for PE2LX
[2067]241
242 99-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
[2060]243 - KERNEL32: Changed logging in winimagepeldr.cpp
244 Uses private log with dprintfs instead of file streams.
245 Added support for private dll logs (see comments in misc.h)
246 //To use private dll logging, define PRIVATE_LOGGING and
247 //add Open/ClosePrivateLogFiles (see below) functions to the dll
248 //to open close the private logfile. The logfile handle should
249 //be stored in the _privateLogFile variable
250 //dprintf can be called like this:
251 //dprintf((LOG, "PE file : %s", szFileName));
252
[2057]253 99-12-11: Jens Wiessner <wiessnej@rfi.de>
254 - CRTDLL: Fix for GetMainArgs (fixes windiff)
255 - MSVCRT: Fix for GetMainArgs
256
[2054]257 99-12-10: Sander van Leeuwen <sandervl@xs4all.nl>
258 - KERNEL32: Fix for CreateFileMapping; return old handle if
259 trying to open existing mapping
260 commitPage: Commit page by page, not entire range (could
261 leave holes if VirtualQueryMem range != nrpages)
262
[2048]263 99-12-09: Christoph Bratschi <cbratschi@datacomm.ch>
264 - GDI32: fixed TextOut and ExtTextOut bugs
265
[2030]266 99-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
267 - KERNEL32: Fixes in lstrcpynWtoA
[2043]268 Added code heap.
269 Ported ExpandEnvironmentStringsA/W (Wine: 991114)
[2045]270 Create HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Windows
271 key and necessary subkeys (including CSD version)
[2051]272 Corrected return value of Read/WriteFile (must be boolean, not
273 an error code)
[2030]274 - USER32: Major changes for window procedures
275 Now identical to Wine. Window is unicode only if it's
276 window procedure comes from a unicode class.
277 Add thunk code for procedures to store type.
[2043]278 - ODINCRT: Replaced strncpy with one that stops at terminating 0
279 - INCLUDE\string.h: VAC version + minor change for strncpy
280 - WIN32K\PE2LX: Link with odincrt.lib for rtl functions
[2030]281
[2026]282 99-12-08: David Raison <djr@lemur.co.uk>
283 - OLEAUT32: Typelib handling:
284 Parsing of typelib improved - Several
285 incorrect pointer problems fixed
286 esp. start addr. of var table.
287 Use EnumResourceNames to locate
288 embedded TYPELIB resources.
289 Bugfixes.
290
[2015]291 99-12-07: Achim Hasenmueller <achimha@innotek.de>
292 - WSOCK32: Moved old implementation to wsock32/old and promoted
293 wsock32/new (based on PMWSOCK.DLL) as the default implementation
294
[2008]295 99-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
296 - KERNEL32: Fixed string resource load bug (last character of string resource set to 0)
297 - KERNEL32: Always commit memory for page memory maps
[2011]298 - KERNEL32: Fixed bug in InterlockedExchange (parameters reversed)
[2008]299 - USER32: Do not call selectClientArea during BeginPaint -> creates
300 painting problems for i.e. memory SDK sample & AbiWord
301 Disabled CS_OWNDC support for now -> otherwise certain
302 windows never receive a WM_ERASEBKGND message. (memory SDK sample)
[2017]303 Fix for Abiword & memory.exe -> extra check for owndc in Begin/EndPaint
[2008]304
[1999]305 99-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
306 - KERNEL32/OLEAUT32: Renamed OLEAUT32 to OLAUTOS2 to avoid conflicts
307 with Lotus SmartSuite (again..)
308 - KERNEL32: Fixed memory map bugs
309
[1995]310 99-12-06: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
311 - WINMM: Ported MMIO from Wine (now SoundRecorder can open wave files)
312
313 99-12-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
314 - KERNEL32: Temporary hack in GetFullPathNameA to replace forward
315 slashes by backslashes (needed for WinZip 7.0)
[1996]316 Fixed dprintf in lstrcmpW
[1995]317
[1992]318 99-12-06: Daniela Engert <dani@ngrt.de>
319 - ODINCRT: change debug *allocs to return zeroed memory (instead of
320 filled with 0xAA). Some applications expect it this way.
321
[1988]322 99-12-06: Patrick Haller <phaller@gmx.net>
[1992]323 - KERNEL32: Reimplemented InterlockedXXX-APIs to
324 be NT4 compatible
[1988]325
[1985]326 99-12-05: Christoph Bratschi <cbratschi@datacomm.ch>
327 - KERNEL32: Only convert the string and not everything in UnicodeToAsciiStringN
328
[1973]329 99-12-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
330 - KERNEL32: Better logging for CreateProcessA
[1980]331 - DDRAW: io_init1 -> PUSH OFFSET FLAT:devname
[1973]332
[1972]333 99-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
334 - GDI32: Changed DEFAULT_GUI_FONT to WarpSans.9
335 - USER32:InSendMessage,GetMessagePos,GetMessageTime & ReplyMessage
[1992]336 implemented using PM apis.
337 Update client rectangle in WM_WINDOWPOSCHANGED handler in
338 pmwindow.cpp. (client can change without affecting the
339 frame window's size/position; previously we never sent an update)
340 -> fixes wrong button position in RealPlayer
341 Changed FCF_TITLEBAR selection. Removes some, but not all, unwanted
342 windows from the tasklist.
[1973]343 - INCLUDE\heapstring.h: Changed definition of lstrcpy(n)AtoW/WtoA
[1992]344 - KERNEL32: CHanged lstrcpy(n)AtoW/WtoA
345 Fixed bug in InterlockedExchange (ret 4 should be ret 8)
346 -> fixes crashes in Mozilla viewer & WinAmp (2.5e)
[1973]347 - LZ32: Removed prototype of lstrcpyAtoW
[1972]348
[1969]349 99-12-04 Achim Hasenmueller <achimha@innotek.de>
[1992]350 - WSOCK32\NEW: Fixed bugs with incorrect relay window invocation
351 Improved debugging messages, better error handling
352 Works very well now, VP Buddy does not crash anymore
353 Please test well, then it can be promoted
[1969]354
[1967]355 99-12-04 Markus Montkowski <mmontkowski@gmx.de>
[1992]356 - GDI32: Implemented DEFAULT_GUI_FONT for GetStockObject
357 DIBSecttion now get the DC Palette on creation and
[1967]358 updated if DC Pal changes.
359
[1964]360 99-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
361 - USER32: Experimental WM_ERASEBACKGND change
[1992]362 Ignore PM WM_ERASEBACKGROUND (return 1), always
363 send one in BeginPaint and call BeginPaint/EndPaint
364 in the default window handler for WM_(ICON)PAINT
[1964]365
[1962]366 99-12-03: Christoph Bratschi <cbratschi@datacomm.ch>
367 - USER32: removed WS_* check in scrollbar code
368 - GDI32: moved line API's to line.cpp
369
[1958]370 99-12-03: Edgar Buerkle <Edgar.Buerkle@gmx.net>
371 - GDI32: Fixes for CreateDCW & CreateICW
372 - COMCTL32: Fixed PROPSHEET_CollectSheetInfo
373
374 99-12-03: Jens Wiessner <wiessnej@rfi.de>
375 - OLE32: Corrected CoSetState Stub.
376 - OLEAUT32: Changed return value (CreateDispTypeInfo) from S_OK to
[1992]377 E_OUTOFMEMORY
[1958]378 - NTDLL: Changed dprintfs for strcpy/strcat
379
[1953]380 99-12-02: Patrick Haller <phaller@gmx.net>
[1992]381 - WSOCK32\NEW: Improvements.
[1953]382 - INCLUDE: Some macro fixes in misc.h and odinwrap.h
383
[1950]384 99-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
385 - USER32: Rewrote EnumThreadWindows/EnumWindows
[1992]386 Fixed GetParent
[1950]387
[1946]388 99-12-02 Markus Montkowski <mmontkowski@gmx.de>
[1992]389 - GDI32: Implemented:
390 CombineTransform, CreateDIBPatternBrush, CreateDCW,
391 CreateEnhMetaFileW, CreateICW
392 Fixed memory leak in GetTextFaceW (didn't free ASCII buffer)
393 Enhanced StretchBlt to support DIBSections
[1946]394
[1941]395 99-12-02: Achim Hasenmueller <achimha@innotek.de>
[1992]396 - WSOCK32\NEW: Not really working :(
397 Fixed WSAAsyncGetHostByName, added request data to table
[1941]398
[1934]399 99-12-01: Patrick Haller <phaller@gmx.net>
400 - WSOCK32\NEW: Working now :)
401
[1919]402 99-12-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
403 - KERNEL32: Removed check in CreateFileMapping (hFile == -1 && (protect & SEC_COMMIT))
404 - USER32: Added check for valid parent if window is child in ::SetWindowPos
405 - SHELL32: SHGetFileInfoA: set pidlLast to NULL)
406
407 99-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
408 - ODINCRT: Wrappers for allocation/free functions to prevent them
[1992]409 from trashing FS. (happens when called from a thread (
410 that is not the main thread))
411 Also wrappers for new/delete calls. (for the same reason)
[1919]412 - KERNEL32: Increase max nr of open files when DosOpen fails with ERROR_TOO_MANY_OPEN_FILES
[1992]413 (OSLibDosOpen)
414 Don't translate strings if api fails (FindFirstFileW/FindNextFileW)
415 GetProcessTimes (TODO: Doesn't use RtlExtendedIntegerMultiply correctly!)
[1919]416 - ADVAPI32: Fix for RegQueryInfoKeyW (return size = 0)
[1932]417 - GDI32: Ported GetTextCharset & GetTextCharsetInfo (Wine: 991031)
[1992]418 Ported Set/GetSystemPaletteUse
[1919]419
[1908]420 99-11-30: Patrick Haller <phaller@gmx.net>
421 - WSOCK32\NEW: Experimental rewrite using PMWSOCK successful.
422 One problem regarding ODIN message translation remains,
423 TELNET works fine under debugger.
424
[1907]425 99-11-30: Sander van Leeuwen <sandervl@xs4all.nl>
[1886]426 - KERNEL32: Ported Wine process apis (not done) (kernel32\process.cpp)
[1992]427 Unitialized data section bugfix.
[1892]428 - NTDLL: Fixed exports (missing ordinals) and created correct library
429 - ADVAPI32: Call security apis in ntdll (security.cpp; Wine 991031)
[1886]430
[1919]431 99-11-30: Jens Wiessner <wiessnej@rfi.de>
[1886]432 - CRTDLL: Completed GetMainArgs
[1992]433 Implemented several functions.
434 - MSVCRT: Made some changes and implemented new functions.
435 Now builds msvcrt, msvcrt20 & msvcrt40 dlls.
[1886]436
[1919]437 99-11-30: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
[1886]438 - KERNEL32: Another VirtualProtect bugfix
439
[1883]440 99-11-30: Daniela Engert <dani@ngrt.de>
441 - USER32: eliminate superfluous background erases (part 1)
442
[1919]443 99-11-29: Sander van Leeuwen <sandervl@xs4all.nl>
[1878]444 - KERNEL32: Added EnumResourceTypesA/W (not tested)
[1886]445 - USER32: Get/SetActiveWindow bugfixes (don't return OS/2 wnd handles)
[1876]446
447 99-11-29: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
[1883]448 - ODINCRT: Added experimental console hack in initterm.cpp.
449 - PE2LX: Kernel32.dll is the first entry import module name table.
450 This makes kernel32.dll init first.
451 - KERNEL32: Odincrt.lib is the first library to be included during linking.
452 This hopefully will make odincrt init first.
453 - KERNEL32: Implemented EnumResourceNamesA/W. Added a test
454 skeleton for Kernel32 in the src\kernel32\test directory.
[1873]455
[1869]456 99-11-28: Jens Wiessner <wiessnej@rfi.de>
457 - CRTDLL: Implemented several functions that used to be stubs.
458
[1867]459 99-11-28: Sander van Leeuwen <sandervl@xs4all.nl>
460 - COMDLG32: Merged with latest wine code (CVS tree dated 991126)
461
[1863]462 99-11-27: Jens Wiessner <wiessnej@rfi.de>
463 - MSVCRT: Added stubs
464
[1859]465 99-11-27: Christoph Bratschi <cbratschi@datacomm.ch>
466 - USER32: fixed edit bugs
[1873]467 ported WINE monitor code and implemented PM driver
[1859]468
[1854]469 99-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
470 - USER32: Implemented GetInputState and GetQueueStatus
[1883]471 Rewrote MsgWaitForMultipleObjects for waiting on 0 objects
472 (== waiting for messages)
[1854]473 - KERNEL32: TLS bugfix (callback == 0)
474
475 99-11-25: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
476 - USER32: Extended key fix (for cursor keys in Quake 2/Hexen 2 etc)
477
[1848]478 99-11-26: Christoph Bratschi <cbratschi@datacomm.ch>
479 - USER32: fixed rect mapping -> edit scroll redraw bug fixed
480 WM_ERASEBKGND: brush or system color
481
[1840]482 99-11-25: Sander van Leeuwen <sandervl@xs4all.nl>
483 - KERNEL32: Removed hardcoded dependency on ADVAPI32 (cpu.cpp); fixes
[1883]484 logging of multiple apps.
485 TLS bugfix (exception arrived too early; print info later on)
486 Continue during OSLibDosAliasMem if size != range (needs to
487 be fixed)
488 Allow executables to export functions (MS Word)
[1840]489 - USER32: PUT BACK GetWindowContextHelpId & SetWindowContextHelpId
490 - USER32: Win32BaseWindow::SetParent bugfix (setparent(0))
[1883]491 Changed broadcasting of messages. Check all valid window handles.
492 (TODO: Not efficient)
493 SetWindowLong (GWL_STYLE) fix; don't allow WS_VISIBLE or WS_CHILD
494 bit changes. (Wine does this and Pinball & Wordpad crash
495 if it is allowed)
496 Changed WM_SETREDRAW default handler to directly change
497 style (not call SetWindowLongA)
498 Fixed bugs in GetWindow.
[1842]499 - INCLUDE\OS2WRAP.H: Wrong macro fixed (GpiCreatePS didn't have any renaming
[1883]500 -> FS corruption)
[1840]501
502 99-11-25: Edgar Buerkle <Edgar.Buerkle@gmx.net>
503 - KERNEL32: MultiByteToWideChar & WideCharToMultiByte Wine port (991031)
504
[1834]505 99-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
506 - USER32: Fixed desktop window handle (shouldn't be 0)
[1883]507 Added support for broadcasting messages (in post/sendmessage)
508 (Note: might not be complete correct to use WinBroadcastMsg)
509 Changed Post(Thread)MessageA/W; now packs message info in
510 shared memory buffer and posts it using a specific PM message.
[1834]511 - KERNEL32: Return kernel32path\win in GetWindowsDirectoryA if
[1883]512 neither the env variable or odin.ini key is present.
513 (also create this dir)
514 Fixed incorrect dll & exe renaming.
[1834]515
[1827]516 99-11-24: Christoph Bratschi <cbratschi@datacomm.ch>
517 - USER32: added missing button styles and messages
518 several bug fixes
519
[1823]520 99-11-23: David Raison <djr@lemur.co.uk>
[1883]521 - OLE32: Fixed buffer size error in StringFromGUID2.
522 - OLEAUT32: Rearranged iPicture
[1823]523
[1819]524 99-11-23: Sander van Leeuwen <sandervl@xs4all.nl>
525 - USER32: Added stubs for ChangeDisplaySettingsExA/W
[1883]526 Ported Wine EnumDisplaySettingsA/W (991031)
527 Query display color depth during init.
[1819]528 - KERNEL32: Ported and adapted Wine GetSystemInfo (now creates
[1883]529 both cpu & fpu registry keys)
530 Added code for SMP machines (GetSystemInfo)
531 Added IsProcessorFeaturePresent
[1819]532
533 99-11-23: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
534 - USER32: ChangeDisplaySettingsA bugfix
535 - WSOCK32: Compile fix (include two more headers)
536
[1808]537 99-11-22: Patrick Haller <phaller@gmx.net>
538 - WSOCK32\NEW: Experimental rewrite using PMWSOCK, incomplete yet
539
[1813]540 99-11-22: Edgar Buerkle <Edgar.Buerkle@gmx.net>
541 - KERNEL32: Workaround in HMWaitForSingleObject for Open32 handles
[1883]542 (i.e. process handles)
[1813]543 - USER32: Extra checks in wvsnprintfA/W
544 Check if InfoPtr == NULL in STATIC_SetBitmap
[1883]545 - GDI32: SetDIBits support for DIB sections
[1813]546
547 99-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
[1883]548 - KERNEL32: Add default renaming profile keys (ole32 & netapi32) to
549 odin.ini if they're not already there. (during init)
550 DosAliasMem fix; removed ReadFile hack.
551 - KERNEL32: Rewrote pe loader for on-demand loading of sections
552 Currently all sections are preloaded because of problems
553 with page faults in dprints.
[1813]554 - USER32: Removed GetIconInfo hack. Causes problems for other apps.
[1883]555 TODO: Double height reported by Open32 for color icon masks!
[1813]556
557 99-11-22: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
558 - KERNEL32: VirtualProtect bugfix
559
[1795]560 99-11-21: Christoph Bratschi <cbratschi@datacomm.ch>
[1883]561 - KERNEL32: Fixed trailing newline bug in LoadMessageA/W,
562 updated to WINE 991031 level
[1800]563 - USER32: fixed window text handling
564 added static WM_GETTEXT for SS_ICON style
[1795]565
[1787]566 99-11-21: Achim Hasenmueller <achimha@innotek.de>
[1883]567 - USER32: send WM_SETTEXT for edit and static text controls
568 in SetWindowTextA/W
569 Fixes for original Windows colors (still not
570 accurate though)
571 - COMCTL32: stubbed ImageList_Read and ImageList_Write -
572 implementation missing because OLE stream support
573 required
[1787]574
[1780]575 99-11-19: Christoph Bratschi <cbratschi@datacomm.ch>
576 - USER32: fixed listbox scrolling
577
[1777]578 99-11-14: Achim Hasenmueller <achimha@innotek.de>
[1883]579 - COMCTL32: Merged with WINE 991114
[1777]580
[1771]581 99-11-18: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
[1883]582 - KERNEL32: Win32Pe2LxImage didn't issue the setFullPath(szFileName)
583 call during construction.
584 Added a invalid pointer test in OS2Heap::Free which checks
585 that lpMem is within the user address space. (Fixes
586 WinZip 7.0 crash.)
[1771]587
[1763]588 99-11-17: Christoph Bratschi <cbratschi@datacomm.ch>
589 - USER32/COMCTL32: Fixed cursor handling
590
[1772]591*****************************Official Alpha 5 version*********************************
592
[1747]593 99-11-14 Markus Montkowski <mmontkowski@gmx.de>
[1883]594 - DDRAW: Code cleanup and some fixes in handling blts in the virtuel buffers.
595 Set IOPL =3 for all DXgames needed for RA (Red Alert).
596 - DSOUND: Implemented a fake soundcard so that the bufferpos does advance.
597 Needed for RA. ToDO: Use better calulation for HiresTimers
[1747]598
[1743]599 99-11-14: David Raison <djr@lemur.co.uk>
[1883]600 - OLEAUT32: Tidy up IPicture implentation - now handles fOwn.
[1743]601
[1736]602 99-11-14: Achim Hasenmueller <achimha@innotek.de>
[1883]603 - COMCTL32: Fixed strdupAtoW/WtoA calls
604 Implemented missing undocumented string functions
[1736]605
[1731]606 99-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
607 - USER32: Implemented GetMenuItemRect
[1883]608 Fixed SetParent bug (use frame (not client) handle)
609 Fixed createControls for dialogs (set windowname for ids)
610 Ported LookupIconIdFromDirectory(Ex) (Wine, 991031)
611 Fixed OSLibWinEnableWindow (need to enable/disable both frame and client)
612 Partly ported Wine CopyImage for cursors & icons (disabled
613 because it doesn't work correctly)
614 Workaround for double height of icon masks -> doesn't work
615 100% correctly and IS A DIRTY HACK. (Open32 bug)
[1731]616
617 99-11-14: Edgar Buerkle <Edgar.Buerkle@gmx.net>
618 - USER32: Fixed WindowFromPoint
619
[1729]620 99-11-14: David Raison <djr@lemur.co.uk>
[1883]621 - OLEAUT32: Added beginnings of IPicture interface for VB6 support.
622 Mostly stubs, but enough to get a simple VB6 app started.
623 ICreatePictureIndirect updated.
[1729]624
[1723]625 99-11-13: Christoph Bratschi <cbratschi@datacomm.ch>
626 - USER32: fixed more edit bugs
627 merged controls with wine-991031
628
[1719]629 99-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
630 - KERNEL32: Fixed problem with ReadFile & aliased memory
[1883]631 (DosRead doesn't like writing to memory addresses
632 returned by DosAliasMem -> search for original
633 memory mapped pointer and use that one)
634 -> fixes problems in Lotus Notes 5.0
635 Also commit these pages before calling DosRead as exceptions
636 in the kernel can't be handled by us.
[1722]637 - KERNEL32\PELDR:
[1883]638 Better error reporting
[1722]639 - COMDLG32: Fixed bug in strlen: first check if pointer != NULL (FILEDLG95_InitUI)
[1883]640 Bugfix: ofn->lpTemplateName can be string id, so
641 don't always treat it as a string
[1722]642 Check pointer returned by CBGetItemDataPtr, if != -1, then
[1883]643 it's a string. (FILEDLG95_OnOpen)
[1719]644
[1716]645 99-11-12: Christoph Bratschi <cbratschi@datacomm.ch>
646 - USER32: fixed several edit bugs
647
[1710]648 99-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
649 - GDI32: Changes + fixes in DIBSection bitblt (fixes Quake 2)
[1883]650 - KERNEL32: Added handlemanager class for device drivers
651 Put devio.cpp in device driver class. (NOT TESTED)
[1710]652
653 99-11-12: Edgar Buerkle <Edgar.Buerkle@gmx.net>
654 - KERNEL32: Wrote file io replacement apis (preliminary version)
[1883]655 (not enabled)
[1710]656
657 99-11-12: Jens Wiessner <wiessnej@rfi.de>
658 - IMAGEHLP,IMM32,OLECLI32,OLEDLG,OLESVR32,PSAPI,RASAPI32
[1883]659 Updates
[1710]660 - MSVCRT: Added stubs
661
[1701]662 99-11-11: Sander van Leeuwen <sandervl@xs4all.nl>
663 - USER32: Implemented GetWindowContextHelpId & SetWindowContextHelpId
[1883]664 Implemented GetKeyboardState (NOT TESTED)
665 Ported SwitchToThisWindow, GetKeyboardLayout, TranslateCharsetInfo
666 GetKeyboardLayoutNameA/W (991031)
667 Fixed Win32Dialog::SetWindowLongA for dlg proc.
[1701]668 - GDI32: Implemented EnumFontsA/W. Fixed bugs in EnumFontFamiliesW
[1883]669 (NEWTEXTMETRICW is different from NEWTEXTMETRICA)
[1706]670 - KERNEL32: Turn off debugging by default when compiling the nodebuginfo
[1883]671 build (can be enabled by setting the env. variable WIN32LOG_ENABLED)
672 Fixes for GetVersionSize/Struct for images that aren't loaded.
[1706]673 Fixed heap corruption in GetEnvironmentVariableW.
[1701]674
[1692]675 99-11-10: Christoph Bratschi <cbratschi@datacomm.ch>
676 - USER32: ShowScrollBar: create not existing scrollbars
677
[1689]678 99-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
679 - KERNEL32: Rewrote OSLibDosAllocMem to only return addresses
[1883]680 aligned at 64kb boundaries (that's what NT's VirtualAlloc
681 does and it fixes problems with MS Word & StarCraft)
682 Fixed wrong dprintf in GetProcAddress.
683 Added code to VirtualAlloc for committing pages of memory mapped
684 files. (Word needs this)
[1689]685 - USER32: Implemented WindowFromDC
[1883]686 Call WinWaitMsg from WaitMessage instead of calling Open32 api.
687 Added wvsnprintfA export (required for NTDLL)
688 - NTDLL: Link with user32.lib, don't import by name directly
689 (needs to be done for the kernel32 forwards too)
[1689]690 - GDI32: Removed flipping of bitmaps in dibsection (no longer necessary)
691
[1684]692 99-11-10: Patrick Haller <phaller@gmx.net>
693 - COMDLG32: Fix: erroneous filter data for GetOpenFileName now tolerated
[1699]694 Open32 keeps to close to the docs :)
[1695]695 - SHELL32: Add: update to WINE19991108
[1699]696 - GDI32: Add: Font remapping via ODIN.INI (MS Sans Serif -> WarpSans)
[1684]697
[1681]698 99-11-10: knut.st.osmundsen <knut.stange.osmundsen@pmsc.no>
[1883]699 - PE2LX: Added OLE32 to the lie list. New Base class.
700 - WIN32K: Disabled Yield - this solves problems running win32k
701 at SMP kernels and logging problems on all kernels.
702 Added some parameters.
[1681]703
[1672]704 99-11-09: Rene Pronk <R.Pronk@twi.tudelft.nl>
705 - USER32: Added support for control mnemonics (Alt-key sends BM_CLICK
[1883]706 to buttons if key == mnemonic for that control)
[1672]707
[1665]708 99-11-09: Christoph Bratschi <cbratschi@datacomm.ch>
709 - GDI32: fixed line functions -> don't draw end pixel
710 - COMCTL32/USER32: removed some old workarounds
711 - USER32: fixed system resource handling
712
[1661]713 99-11-09: Sander van Leeuwen <sandervl@xs4all.nl>
714 - OLE32: Renamed dll to OLE32OS2 to avoid conflicts with Lotus SmartSuite's
[1883]715 OLE32.dll
[1661]716 - OLE32/OLEAUT32/AVIFIL32: compilation fixes
717 - KERNEL32: Fixed lstrcpynAtoW & lstrcpynWtoA, OS/2 unicode api
[1883]718 translated up to maxlen characters -> heap corruption
719 in Solitaire. Translate upto min(stringlength+1, maxlen).
720 Also, terminate at strlen(strlength), not maxbuf-1 (lstrcpynWtoA)
[1661]721 - KERNEL32: Added code for renaming dlls (i.e. OLE32 <-> OLE32OS2)
[1883]722 Odin.ini in bin directory needs to be present for PE loader
723 (includes renaming entries for OLE32 & NETAPI32)
724 NOTE: Dll name in ole32.lib has changed, so a complete recompilation
725 is required!
726 NOTE 2: We might need to add some code to the file io apis in case
727 dirty apps try to read directly from system dlls.
[1661]728 - KERNEL32: No need to export private apis by name & ordinal (ord is enough)
[1681]729 - INCLUDE\odinwrap.h
[1883]730 added wrappers that don't print dbg messages (regardless
731 of whether DEBUG is defined or not)
[1672]732 - INCLUDE\misc.h: Added dprintf2 function for extensive logging
733 - KERNEL32,USER32, replaced commented out dprintf calls with dprintf2
[1883]734 Changed makefiles to enable dprintf2 (DEBUGALL)
[1672]735 - KERNEL32: Wrapper heap apis with ODIN* macros. -> fixes FS corruption
[1676]736 - USER32: Fixed LoadMenuIndirectW (didn't call new code)
[1661]737
[1653]738 99-11-09: Patrick Haller <phaller@gmx.net>
739 - NTDLL: Add: various new functions added (DbgXXX)
740
[1648]741 99-11-08: Markus Montkowski <mmontkowski@gmx.de>
742 - WING32: Added first implementation of this old 32bit DLL.
743
[1645]744 99-11-08: Edgar Buerkle <Edgar.Buerkle@gmx.net>
745 - KERNEL32: SetCurrentDirectory, CreateDirectory, RemoveDirectory bugfixes.
[1883]746 (remove terminating backslash if present)
[1645]747
[1638]748 99-11-08: Patrick Haller <phaller@gmx.net>
[1681]749 - COMCTL32: Fix: EDIT: if obtaining font information fails,
[1638]750 prevent division by zero
[1650]751 - NTDLL: Add: numerous integer arithmetic functions added
[1638]752
[1635]753 99-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
754 - KERNEL32: Fixed bug in thread handler (exception handler set
[1883]755 at wrong moment)
756 Ported Wine critical section code (991031), Open32
757 doesn't correctly fill in the CRITICAL_SECTION structure.
758 Limit size of memory mapped files.
[1635]759 - USER32: PostThreadMessageA/W fix
760
761 99-11-06: Sander van Leeuwen <sandervl@xs4all.nl>
762 - DINPUT: Ported Wine code (991031) (not tested yet)
763 - USER32: Added code for sending mouse events to dinput.dll
[1883]764 Added PM <-> win32 key translation (used in dinput.dll)
[1635]765
766 99-11-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
767 - USER32: GetMenuStringW fix
768
[1617]769 99-11-05: Achim Hasenmueller <achimha@innotek.de>
[1883]770 - COMCTL32: Source code cleanup, remove warnings, corrected typecasts
771 Added logging, warnings for stub functions
772 - KERNEL32: Source code cleanup, fix warnings
773 - USER32: Source code cleanup, fix warnings
[1617]774
[1614]775 99-11-05: Patrick Haller <phaller@gmx.net>
776 - COMCTL32: Fix: TREEVIEW_Edit_Subclass is called with freed infoPtr
777 This only cures the symptoms, not the origin!
778
[1611]779 99-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
780 - USER32: Fixed InsertMenuA
[1883]781 Message translation fix for WM_USER+n messages (GetMessage)
782 Extra translation.
783 Rewrote/Ported LoadStringA/W (similar to Wine now)
784 - KERNEL32: Changed FindResource, string id translation should be done
785 in LoadStringA/W (done that way in Wine)
786 Fixed GetModuleHandleA
[1611]787
[1608]788 99-11-05: Jens Wiessner <wiessnej@rfi.de>
789 - MSVFW32: Updated to Wine level 991031
790 - IMM32: Replaced some FIXME entries with dprintf;
791 - KERNEL32: Added _wsnprintfA to .DEF file for export (MSACM32 needs this)
792 - INCLUDE: New MSACM.H from Wine991031 (MSACM32 needs this)
793 - MSACM32: New MSACM32.DLL (Ported from Wine9910131)
794
795 99-11-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
796 - GDI32: Fixes for StretchDIBits & GetDIBColorTable
797 - USER32: Fixes for ArrangeIconicWindows & ShowOwnedPopups
[1883]798 NULL pointer checks in hasWindowName/hasClassName/FindClass
799 Message translation fix for WM_USER+n messages
[1608]800 - OLE32: Always create OLE window class
801 - KERNEL32: Null pointer check in lstrcmpiA
802 - SHELL32: Corrected export of Shell_GetCachedImageIndex
803
[1598]804 99-11-04: Sander van Leeuwen <sandervl@xs4all.nl>
805 - SHLWAPI: Fixed makefile
806 - USER32: Put back Dani's dialog fix (WS_CLIPSIBLINGS bit for dialog controls)
[1883]807 (fixes winhlp32 & comboboxes)
[1598]808
[1590]809 99-11-04: Patrick Haller <phaller@gmx.net>
810 - WNETAP32: Add: numerous undocumented functions stubbed
[1591]811 - ADVAPI32: Add: LsaXXX-functions stubbed
[1593]812 - USER32: Fix: wvsprintfA/W fixed (buffer overwrite)
[1603]813 - KERNEL32: Fix: unnamed kernel objects (events, mutexes, semaphores)
[1590]814
[1586]815 99-11-03: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
816 - Makefiles: Changes to build the libraries first
817
[1578]818 99-11-03: Sander van Leeuwen <sandervl@xs4all.nl>
819 - COMDLG32: Import from shlwapi as the original Wine code does
820 - SHELLL32: Added exports
821 - SHLWAPI: Link with shell32.lib for forwarders + added exports
822 - USER32: Fixed mouseactivate for subclassed OS/2 windows (scrollbars)
[1883]823 Fixed CreateIconIndirect (Wine file dialog now shows button
824 icons correctly)
825 Don't clear WS_CLIPSIBLINGS bit in OSSetWindowStyle.
826 Removed fix in PMFRAME WM_ADJUSTWINDOWPOS: Previous fix breaks
827 a lot of apps (button.exe/style.exe/header4.exe)
828 (fix = call default frame handler when receiving this msg
829 when the window hasn't been 'created' yet)
[1578]830
[1571]831 99-11-03: Christoph Bratschi <cbratschi@datacomm.ch>
[1577]832 - USER32: fixed modal dialogs
[1582]833 added WM_CONTEXTMENU
834 - COMCTL32: implemented statusbar size grip
[1571]835
[1570]836 99-11-03: Patrick Haller <phaller@gmx.net>
[1883]837 - KERNEL32: Fix: undocumented behaviour in SearchPathA
[1570]838 and bugfix in SearchPathW
[1573]839 - USER32: Fix: TrackPopupMenuEx lpPM can be NULL
[1590]840 Fix LoadBitmapA checked for incorrect return value
[1570]841
[1569]842 99-11-02 Markus Montkowski <mmontkowski@gmx.de>
[1577]843 - DDRAW: Changed debug output to DDRAW: ...
[1883]844 Copied Framebuffer if in colorconversion mode for Normal Blits to
845 the primary surface. => Map Editor of Red Alert works.
[1569]846
[1567]847 00-11-02: Achim Hasenmueller <achimha@innotek.de>
[1883]848 - COMCTL32: Incorporated latest WINE 991031 updates
849 Note: listview doesn't paint properly now. Will be fixed later.
[1567]850
851 99-11-02: Markus Montkowski <mmontkowski@gmx.de>
[1564]852 - DDRAW: Changed interface handling of Surfaces=> Quake 2 runs again!
[1486]853
[1563]854 99-11-02: Patrick Haller <phaller@gmx.net>
855 - SHELL32: Up to current WINE level
856 - SHLWAPI: Created (in WINE it mostly links to SHELL32)
857
[1544]858 99-11-02: Sander van Leeuwen <sandervl@xs4all.nl>
[1681]859 - INCLUDE\odinwrap.h:
[1883]860 fixed wrong define (_ODINWARP instead of _ODINWRAP)
861 Only check the heap for consistency when DEBUG_ODINHEAP is
862 defined.
[1544]863 - USER32: Uncommented EDIT_NOTIFY_PARENT call in EDIT_WM_SetFocus
[1883]864 (yesterday's showwindow fix makes sure no WM_SETFOCUS msgs
865 arrive before the dialog received it's WM_INITDIALOG msg)
866 Fixed more FS corruption in dc.cpp.
[1544]867 - SHELL32: Added extra exports for comdlg32
[1554]868 - COMDLG32: Ported Wine file & find common dialogs (991031)
[1883]869 Find & Replace dialogs enabled, Wine code called for
870 file dialogs if the app supplies a dialog template.
871 NOTE: Disabled for now. Comctl32 isn't stable enough
872 for the Win95 style Wine comdlg dialogs.
873 Fixed check for find/replace dialog. Notepad uses 32 byte
874 buffer, so why does the wine code fail for < 80 bytes?
875 Fixed display of find/replace dialog -> if not hooked
876 show dialog!
[1544]877 - makefiles: Added debugsmp/nodebuginfosmp/releasesmp options to
[1883]878 start two nmake process to build everything on two cpus.
[1544]879
[1541]880 99-11-01: Sander van Leeuwen <sandervl@xs4all.nl>
881 - USER32: Delete all process windows & classes in exitlist handler
[1883]882 Set hwndInsertBehind to HWND_BOTTOM for group boxes
883 (fixes problems when groupbox control is defined after
884 controls inside it in dialog template)
885 Mouse activate fix.
886 Don't activate child windows in ShowWindow.
[1541]887 - WINMM: Return failure for waveOutGetDevCapsA/W when there's no
[1883]888 audio hardware present.
[1541]889
890
[1537]891 99-11-01: Daniela Engert <dani@ngrt.de>
892 - USER32: add WS_CLIPSIBLINGS to not-WS_GROUP style STATIC controls
893 (fixes missing text in WELCOME)
[1531]894
[1537]895 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
896
897 This is a hack!
898
899 Dialog controls which contain/surround other controls *need* to be
900 created with the WS_CLIPSIBLINGS style.
901
902 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Note: See TracBrowser for help on using the repository browser.