source: trunk/changelog@ 2129

Last change on this file since 2129 was 2127, checked in by achimha, 26 years ago

* empty log message *

File size: 32.6 KB
Line 
1 /* $Id: changelog,v 1.550 1999-12-18 21:00:50 achimha Exp $ */
2
3 99-12-18: Achim Hasenmueller <achimha@innotek.de>
4 - COMCTL32: Merged with latest WINE 991212 code
5 Treeview still to do
6
7 99-12-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
8 - KERNEL32: Partially implemented GetThreadContext, Read/WriteProcessMemory
9
10 99-12-18: Christoph Bratschi <cbratschi@datacomm.ch>
11 - USER32: added MDI menu window switching
12 fixed ChildWindowFromPointEx
13 fixed WM_MDIDESTROY
14
15 99-12-18: Sander van Leeuwen <sandervl@xs4all.nl>
16 - MSACM32: Compile fixes (internal.cpp)
17 - USER32: WindowFromPoint fix (return 0 if no windows found, not the desktop wnd handle)
18 SetMenuItemInfoA bugfix (for novamatic) (still not completely
19 implemented though)
20 - AVIFIL32: updated with the latest code from Wine 991212.
21 - KERNEL32: Partly implemented GetCurrencyFormatA/W (not correct, but
22 to make apps happy)
23 - NTDLL: Partially implemented some Token & SID apis in order to get
24 MS Office 2000 install to work.
25
26 99-12-18: Jens Wiessner <wiessnej@rfi.de>
27 - MSACM32: Updated with latest Wine code (991212)
28 - CRTDLL: Removed the ERRNO Defs from CRTINC.H and included ERRNO.H
29
30 99-12-17: Christoph Bratschi <cbratschi@datacomm.ch>
31 - USER32: WM_NOTIFYPARENT: map cursor pos
32 implemented MDI cascade/tile
33
34 99-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
35 - KERNEL32: Delete thread's THDB structure when it quits
36 - USER32: Hook removal bugfix
37
38 99-12-17: Edgar Buerkle <Edgar.Buerkle@gmx.net>
39 - INCLUDE\winconst.h/wintypes.h/win\winbase.h: Added definitions
40 - KERNEL32: Set DEBUG_PROCESS flag for DEBUG_ONLY_THIS_PROCESS flag
41 in CreateProcess (open32 doesn't support the latter flag)
42
43 99-12-16: Christoph Bratschi <cbratschi@datacomm.ch>
44 - USER32: fixed 'dancing characters' in edit control
45 ported GrayString from WINE
46 desktop: terminate string in WM_GETTEXT
47 free timers after WM_DESTROY
48 - GDI32: several bug fixes for text output functions
49 implemented PolyTextOutA/W
50
51 99-12-14: Sander van Leeuwen <sandervl@xs4all.nl>
52 - USER32: Tasklist fix
53 Rewrote SendMessage handling; Uses WinSendMsg now if window
54 is created by a different process/thread.
55 Started with port of Wine hook code
56 ShowWindowAsync calls ShowWindow now (not correct, but better than nothing)
57 - KERNEL32: Added GetTHDBFromThreadId (used in USER32) & link THDB structures during creation
58 Put back old interlocked code (Wine port + InterlockedExchange fix)
59 - GDI32: Extra logging for Create*Rgn apis
60
61 99-12-13: Edgar Buerkle <Edgar.Buerkle@gmx.net>
62 - KERNEL32: Added null pointer checks in lstrcatA/W
63 - USER32: Removed unicode to ascii translation during MDI child creation
64 (message translation code already takes care of this)
65
66 99-12-13: Sander van Leeuwen <sandervl@xs4all.nl>
67 - KERNEL32: Fixed performance problem in mmap.cpp
68 Report correct dll when exe loading fails
69 Fixed command line bug in CreateProcess (if app & cmd line
70 are specified, skip exe name in cmd line)
71 - INCLUDE\WIN\winnt.h: Header fixes
72 - Porting.txt: Fixed sample makefile (you need to add -D__i386__ as compiler option)
73 - USER32: NotifyParent bugfix (use id & handle of 1st child window)
74 Added WM_INITMENU message support
75 Experimental CS_PARENTDC support (disabled for now)
76
77 99-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
78 - KERNEL32: Fixes for on-demand page loader; currently disabled by
79 default because it interferes with debugging (too many
80 exceptions are generated)
81 To enable it undefine COMMIT_ALL in kernel32\winimagepeldr.cpp.
82 Dll unload fix for PE loader (fixes crash when Notes quits)
83 - PE2LX: Don't link with odincrt -> 'Not enough storage to complete
84 initialization' error. Reason unknown.
85 - INCLUDE\string.h: Use original strncpy for PE2LX
86
87 99-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
88 - KERNEL32: Changed logging in winimagepeldr.cpp
89 Uses private log with dprintfs instead of file streams.
90 Added support for private dll logs (see comments in misc.h)
91 //To use private dll logging, define PRIVATE_LOGGING and
92 //add Open/ClosePrivateLogFiles (see below) functions to the dll
93 //to open close the private logfile. The logfile handle should
94 //be stored in the _privateLogFile variable
95 //dprintf can be called like this:
96 //dprintf((LOG, "PE file : %s", szFileName));
97
98 99-12-11: Jens Wiessner <wiessnej@rfi.de>
99 - CRTDLL: Fix for GetMainArgs (fixes windiff)
100 - MSVCRT: Fix for GetMainArgs
101
102 99-12-10: Sander van Leeuwen <sandervl@xs4all.nl>
103 - KERNEL32: Fix for CreateFileMapping; return old handle if
104 trying to open existing mapping
105 commitPage: Commit page by page, not entire range (could
106 leave holes if VirtualQueryMem range != nrpages)
107
108 99-12-09: Christoph Bratschi <cbratschi@datacomm.ch>
109 - GDI32: fixed TextOut and ExtTextOut bugs
110
111 99-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
112 - KERNEL32: Fixes in lstrcpynWtoA
113 Added code heap.
114 Ported ExpandEnvironmentStringsA/W (Wine: 991114)
115 Create HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Windows
116 key and necessary subkeys (including CSD version)
117 Corrected return value of Read/WriteFile (must be boolean, not
118 an error code)
119 - USER32: Major changes for window procedures
120 Now identical to Wine. Window is unicode only if it's
121 window procedure comes from a unicode class.
122 Add thunk code for procedures to store type.
123 - ODINCRT: Replaced strncpy with one that stops at terminating 0
124 - INCLUDE\string.h: VAC version + minor change for strncpy
125 - WIN32K\PE2LX: Link with odincrt.lib for rtl functions
126
127 99-12-08: David Raison <djr@lemur.co.uk>
128 - OLEAUT32: Typelib handling:
129 Parsing of typelib improved - Several
130 incorrect pointer problems fixed
131 esp. start addr. of var table.
132 Use EnumResourceNames to locate
133 embedded TYPELIB resources.
134 Bugfixes.
135
136 99-12-07: Achim Hasenmueller <achimha@innotek.de>
137 - WSOCK32: Moved old implementation to wsock32/old and promoted
138 wsock32/new (based on PMWSOCK.DLL) as the default implementation
139
140 99-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
141 - KERNEL32: Fixed string resource load bug (last character of string resource set to 0)
142 - KERNEL32: Always commit memory for page memory maps
143 - KERNEL32: Fixed bug in InterlockedExchange (parameters reversed)
144 - USER32: Do not call selectClientArea during BeginPaint -> creates
145 painting problems for i.e. memory SDK sample & AbiWord
146 Disabled CS_OWNDC support for now -> otherwise certain
147 windows never receive a WM_ERASEBKGND message. (memory SDK sample)
148 Fix for Abiword & memory.exe -> extra check for owndc in Begin/EndPaint
149
150 99-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
151 - KERNEL32/OLEAUT32: Renamed OLEAUT32 to OLAUTOS2 to avoid conflicts
152 with Lotus SmartSuite (again..)
153 - KERNEL32: Fixed memory map bugs
154
155 99-12-06: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
156 - WINMM: Ported MMIO from Wine (now SoundRecorder can open wave files)
157
158 99-12-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
159 - KERNEL32: Temporary hack in GetFullPathNameA to replace forward
160 slashes by backslashes (needed for WinZip 7.0)
161 Fixed dprintf in lstrcmpW
162
163 99-12-06: Daniela Engert <dani@ngrt.de>
164 - ODINCRT: change debug *allocs to return zeroed memory (instead of
165 filled with 0xAA). Some applications expect it this way.
166
167 99-12-06: Patrick Haller <phaller@gmx.net>
168 - KERNEL32: Reimplemented InterlockedXXX-APIs to
169 be NT4 compatible
170
171 99-12-05: Christoph Bratschi <cbratschi@datacomm.ch>
172 - KERNEL32: Only convert the string and not everything in UnicodeToAsciiStringN
173
174 99-12-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
175 - KERNEL32: Better logging for CreateProcessA
176 - DDRAW: io_init1 -> PUSH OFFSET FLAT:devname
177
178 99-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
179 - GDI32: Changed DEFAULT_GUI_FONT to WarpSans.9
180 - USER32:InSendMessage,GetMessagePos,GetMessageTime & ReplyMessage
181 implemented using PM apis.
182 Update client rectangle in WM_WINDOWPOSCHANGED handler in
183 pmwindow.cpp. (client can change without affecting the
184 frame window's size/position; previously we never sent an update)
185 -> fixes wrong button position in RealPlayer
186 Changed FCF_TITLEBAR selection. Removes some, but not all, unwanted
187 windows from the tasklist.
188 - INCLUDE\heapstring.h: Changed definition of lstrcpy(n)AtoW/WtoA
189 - KERNEL32: CHanged lstrcpy(n)AtoW/WtoA
190 Fixed bug in InterlockedExchange (ret 4 should be ret 8)
191 -> fixes crashes in Mozilla viewer & WinAmp (2.5e)
192 - LZ32: Removed prototype of lstrcpyAtoW
193
194 99-12-04 Achim Hasenmueller <achimha@innotek.de>
195 - WSOCK32\NEW: Fixed bugs with incorrect relay window invocation
196 Improved debugging messages, better error handling
197 Works very well now, VP Buddy does not crash anymore
198 Please test well, then it can be promoted
199
200 99-12-04 Markus Montkowski <mmontkowski@gmx.de>
201 - GDI32: Implemented DEFAULT_GUI_FONT for GetStockObject
202 DIBSecttion now get the DC Palette on creation and
203 updated if DC Pal changes.
204
205 99-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
206 - USER32: Experimental WM_ERASEBACKGND change
207 Ignore PM WM_ERASEBACKGROUND (return 1), always
208 send one in BeginPaint and call BeginPaint/EndPaint
209 in the default window handler for WM_(ICON)PAINT
210
211 99-12-03: Christoph Bratschi <cbratschi@datacomm.ch>
212 - USER32: removed WS_* check in scrollbar code
213 - GDI32: moved line API's to line.cpp
214
215 99-12-03: Edgar Buerkle <Edgar.Buerkle@gmx.net>
216 - GDI32: Fixes for CreateDCW & CreateICW
217 - COMCTL32: Fixed PROPSHEET_CollectSheetInfo
218
219 99-12-03: Jens Wiessner <wiessnej@rfi.de>
220 - OLE32: Corrected CoSetState Stub.
221 - OLEAUT32: Changed return value (CreateDispTypeInfo) from S_OK to
222 E_OUTOFMEMORY
223 - NTDLL: Changed dprintfs for strcpy/strcat
224
225 99-12-02: Patrick Haller <phaller@gmx.net>
226 - WSOCK32\NEW: Improvements.
227 - INCLUDE: Some macro fixes in misc.h and odinwrap.h
228
229 99-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
230 - USER32: Rewrote EnumThreadWindows/EnumWindows
231 Fixed GetParent
232
233 99-12-02 Markus Montkowski <mmontkowski@gmx.de>
234 - GDI32: Implemented:
235 CombineTransform, CreateDIBPatternBrush, CreateDCW,
236 CreateEnhMetaFileW, CreateICW
237 Fixed memory leak in GetTextFaceW (didn't free ASCII buffer)
238 Enhanced StretchBlt to support DIBSections
239
240 99-12-02: Achim Hasenmueller <achimha@innotek.de>
241 - WSOCK32\NEW: Not really working :(
242 Fixed WSAAsyncGetHostByName, added request data to table
243
244 99-12-01: Patrick Haller <phaller@gmx.net>
245 - WSOCK32\NEW: Working now :)
246
247 99-12-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
248 - KERNEL32: Removed check in CreateFileMapping (hFile == -1 && (protect & SEC_COMMIT))
249 - USER32: Added check for valid parent if window is child in ::SetWindowPos
250 - SHELL32: SHGetFileInfoA: set pidlLast to NULL)
251
252 99-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
253 - ODINCRT: Wrappers for allocation/free functions to prevent them
254 from trashing FS. (happens when called from a thread (
255 that is not the main thread))
256 Also wrappers for new/delete calls. (for the same reason)
257 - KERNEL32: Increase max nr of open files when DosOpen fails with ERROR_TOO_MANY_OPEN_FILES
258 (OSLibDosOpen)
259 Don't translate strings if api fails (FindFirstFileW/FindNextFileW)
260 GetProcessTimes (TODO: Doesn't use RtlExtendedIntegerMultiply correctly!)
261 - ADVAPI32: Fix for RegQueryInfoKeyW (return size = 0)
262 - GDI32: Ported GetTextCharset & GetTextCharsetInfo (Wine: 991031)
263 Ported Set/GetSystemPaletteUse
264
265 99-11-30: Patrick Haller <phaller@gmx.net>
266 - WSOCK32\NEW: Experimental rewrite using PMWSOCK successful.
267 One problem regarding ODIN message translation remains,
268 TELNET works fine under debugger.
269
270 99-11-30: Sander van Leeuwen <sandervl@xs4all.nl>
271 - KERNEL32: Ported Wine process apis (not done) (kernel32\process.cpp)
272 Unitialized data section bugfix.
273 - NTDLL: Fixed exports (missing ordinals) and created correct library
274 - ADVAPI32: Call security apis in ntdll (security.cpp; Wine 991031)
275
276 99-11-30: Jens Wiessner <wiessnej@rfi.de>
277 - CRTDLL: Completed GetMainArgs
278 Implemented several functions.
279 - MSVCRT: Made some changes and implemented new functions.
280 Now builds msvcrt, msvcrt20 & msvcrt40 dlls.
281
282 99-11-30: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
283 - KERNEL32: Another VirtualProtect bugfix
284
285 99-11-30: Daniela Engert <dani@ngrt.de>
286 - USER32: eliminate superfluous background erases (part 1)
287
288 99-11-29: Sander van Leeuwen <sandervl@xs4all.nl>
289 - KERNEL32: Added EnumResourceTypesA/W (not tested)
290 - USER32: Get/SetActiveWindow bugfixes (don't return OS/2 wnd handles)
291
292 99-11-29: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
293 - ODINCRT: Added experimental console hack in initterm.cpp.
294 - PE2LX: Kernel32.dll is the first entry import module name table.
295 This makes kernel32.dll init first.
296 - KERNEL32: Odincrt.lib is the first library to be included during linking.
297 This hopefully will make odincrt init first.
298 - KERNEL32: Implemented EnumResourceNamesA/W. Added a test
299 skeleton for Kernel32 in the src\kernel32\test directory.
300
301 99-11-28: Jens Wiessner <wiessnej@rfi.de>
302 - CRTDLL: Implemented several functions that used to be stubs.
303
304 99-11-28: Sander van Leeuwen <sandervl@xs4all.nl>
305 - COMDLG32: Merged with latest wine code (CVS tree dated 991126)
306
307 99-11-27: Jens Wiessner <wiessnej@rfi.de>
308 - MSVCRT: Added stubs
309
310 99-11-27: Christoph Bratschi <cbratschi@datacomm.ch>
311 - USER32: fixed edit bugs
312 ported WINE monitor code and implemented PM driver
313
314 99-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
315 - USER32: Implemented GetInputState and GetQueueStatus
316 Rewrote MsgWaitForMultipleObjects for waiting on 0 objects
317 (== waiting for messages)
318 - KERNEL32: TLS bugfix (callback == 0)
319
320 99-11-25: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
321 - USER32: Extended key fix (for cursor keys in Quake 2/Hexen 2 etc)
322
323 99-11-26: Christoph Bratschi <cbratschi@datacomm.ch>
324 - USER32: fixed rect mapping -> edit scroll redraw bug fixed
325 WM_ERASEBKGND: brush or system color
326
327 99-11-25: Sander van Leeuwen <sandervl@xs4all.nl>
328 - KERNEL32: Removed hardcoded dependency on ADVAPI32 (cpu.cpp); fixes
329 logging of multiple apps.
330 TLS bugfix (exception arrived too early; print info later on)
331 Continue during OSLibDosAliasMem if size != range (needs to
332 be fixed)
333 Allow executables to export functions (MS Word)
334 - USER32: PUT BACK GetWindowContextHelpId & SetWindowContextHelpId
335 - USER32: Win32BaseWindow::SetParent bugfix (setparent(0))
336 Changed broadcasting of messages. Check all valid window handles.
337 (TODO: Not efficient)
338 SetWindowLong (GWL_STYLE) fix; don't allow WS_VISIBLE or WS_CHILD
339 bit changes. (Wine does this and Pinball & Wordpad crash
340 if it is allowed)
341 Changed WM_SETREDRAW default handler to directly change
342 style (not call SetWindowLongA)
343 Fixed bugs in GetWindow.
344 - INCLUDE\OS2WRAP.H: Wrong macro fixed (GpiCreatePS didn't have any renaming
345 -> FS corruption)
346
347 99-11-25: Edgar Buerkle <Edgar.Buerkle@gmx.net>
348 - KERNEL32: MultiByteToWideChar & WideCharToMultiByte Wine port (991031)
349
350 99-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
351 - USER32: Fixed desktop window handle (shouldn't be 0)
352 Added support for broadcasting messages (in post/sendmessage)
353 (Note: might not be complete correct to use WinBroadcastMsg)
354 Changed Post(Thread)MessageA/W; now packs message info in
355 shared memory buffer and posts it using a specific PM message.
356 - KERNEL32: Return kernel32path\win in GetWindowsDirectoryA if
357 neither the env variable or odin.ini key is present.
358 (also create this dir)
359 Fixed incorrect dll & exe renaming.
360
361 99-11-24: Christoph Bratschi <cbratschi@datacomm.ch>
362 - USER32: added missing button styles and messages
363 several bug fixes
364
365 99-11-23: David Raison <djr@lemur.co.uk>
366 - OLE32: Fixed buffer size error in StringFromGUID2.
367 - OLEAUT32: Rearranged iPicture
368
369 99-11-23: Sander van Leeuwen <sandervl@xs4all.nl>
370 - USER32: Added stubs for ChangeDisplaySettingsExA/W
371 Ported Wine EnumDisplaySettingsA/W (991031)
372 Query display color depth during init.
373 - KERNEL32: Ported and adapted Wine GetSystemInfo (now creates
374 both cpu & fpu registry keys)
375 Added code for SMP machines (GetSystemInfo)
376 Added IsProcessorFeaturePresent
377
378 99-11-23: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
379 - USER32: ChangeDisplaySettingsA bugfix
380 - WSOCK32: Compile fix (include two more headers)
381
382 99-11-22: Patrick Haller <phaller@gmx.net>
383 - WSOCK32\NEW: Experimental rewrite using PMWSOCK, incomplete yet
384
385 99-11-22: Edgar Buerkle <Edgar.Buerkle@gmx.net>
386 - KERNEL32: Workaround in HMWaitForSingleObject for Open32 handles
387 (i.e. process handles)
388 - USER32: Extra checks in wvsnprintfA/W
389 Check if InfoPtr == NULL in STATIC_SetBitmap
390 - GDI32: SetDIBits support for DIB sections
391
392 99-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
393 - KERNEL32: Add default renaming profile keys (ole32 & netapi32) to
394 odin.ini if they're not already there. (during init)
395 DosAliasMem fix; removed ReadFile hack.
396 - KERNEL32: Rewrote pe loader for on-demand loading of sections
397 Currently all sections are preloaded because of problems
398 with page faults in dprints.
399 - USER32: Removed GetIconInfo hack. Causes problems for other apps.
400 TODO: Double height reported by Open32 for color icon masks!
401
402 99-11-22: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
403 - KERNEL32: VirtualProtect bugfix
404
405 99-11-21: Christoph Bratschi <cbratschi@datacomm.ch>
406 - KERNEL32: Fixed trailing newline bug in LoadMessageA/W,
407 updated to WINE 991031 level
408 - USER32: fixed window text handling
409 added static WM_GETTEXT for SS_ICON style
410
411 99-11-21: Achim Hasenmueller <achimha@innotek.de>
412 - USER32: send WM_SETTEXT for edit and static text controls
413 in SetWindowTextA/W
414 Fixes for original Windows colors (still not
415 accurate though)
416 - COMCTL32: stubbed ImageList_Read and ImageList_Write -
417 implementation missing because OLE stream support
418 required
419
420 99-11-19: Christoph Bratschi <cbratschi@datacomm.ch>
421 - USER32: fixed listbox scrolling
422
423 99-11-14: Achim Hasenmueller <achimha@innotek.de>
424 - COMCTL32: Merged with WINE 991114
425
426 99-11-18: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
427 - KERNEL32: Win32Pe2LxImage didn't issue the setFullPath(szFileName)
428 call during construction.
429 Added a invalid pointer test in OS2Heap::Free which checks
430 that lpMem is within the user address space. (Fixes
431 WinZip 7.0 crash.)
432
433 99-11-17: Christoph Bratschi <cbratschi@datacomm.ch>
434 - USER32/COMCTL32: Fixed cursor handling
435
436*****************************Official Alpha 5 version*********************************
437
438 99-11-14 Markus Montkowski <mmontkowski@gmx.de>
439 - DDRAW: Code cleanup and some fixes in handling blts in the virtuel buffers.
440 Set IOPL =3 for all DXgames needed for RA (Red Alert).
441 - DSOUND: Implemented a fake soundcard so that the bufferpos does advance.
442 Needed for RA. ToDO: Use better calulation for HiresTimers
443
444 99-11-14: David Raison <djr@lemur.co.uk>
445 - OLEAUT32: Tidy up IPicture implentation - now handles fOwn.
446
447 99-11-14: Achim Hasenmueller <achimha@innotek.de>
448 - COMCTL32: Fixed strdupAtoW/WtoA calls
449 Implemented missing undocumented string functions
450
451 99-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
452 - USER32: Implemented GetMenuItemRect
453 Fixed SetParent bug (use frame (not client) handle)
454 Fixed createControls for dialogs (set windowname for ids)
455 Ported LookupIconIdFromDirectory(Ex) (Wine, 991031)
456 Fixed OSLibWinEnableWindow (need to enable/disable both frame and client)
457 Partly ported Wine CopyImage for cursors & icons (disabled
458 because it doesn't work correctly)
459 Workaround for double height of icon masks -> doesn't work
460 100% correctly and IS A DIRTY HACK. (Open32 bug)
461
462 99-11-14: Edgar Buerkle <Edgar.Buerkle@gmx.net>
463 - USER32: Fixed WindowFromPoint
464
465 99-11-14: David Raison <djr@lemur.co.uk>
466 - OLEAUT32: Added beginnings of IPicture interface for VB6 support.
467 Mostly stubs, but enough to get a simple VB6 app started.
468 ICreatePictureIndirect updated.
469
470 99-11-13: Christoph Bratschi <cbratschi@datacomm.ch>
471 - USER32: fixed more edit bugs
472 merged controls with wine-991031
473
474 99-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
475 - KERNEL32: Fixed problem with ReadFile & aliased memory
476 (DosRead doesn't like writing to memory addresses
477 returned by DosAliasMem -> search for original
478 memory mapped pointer and use that one)
479 -> fixes problems in Lotus Notes 5.0
480 Also commit these pages before calling DosRead as exceptions
481 in the kernel can't be handled by us.
482 - KERNEL32\PELDR:
483 Better error reporting
484 - COMDLG32: Fixed bug in strlen: first check if pointer != NULL (FILEDLG95_InitUI)
485 Bugfix: ofn->lpTemplateName can be string id, so
486 don't always treat it as a string
487 Check pointer returned by CBGetItemDataPtr, if != -1, then
488 it's a string. (FILEDLG95_OnOpen)
489
490 99-11-12: Christoph Bratschi <cbratschi@datacomm.ch>
491 - USER32: fixed several edit bugs
492
493 99-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
494 - GDI32: Changes + fixes in DIBSection bitblt (fixes Quake 2)
495 - KERNEL32: Added handlemanager class for device drivers
496 Put devio.cpp in device driver class. (NOT TESTED)
497
498 99-11-12: Edgar Buerkle <Edgar.Buerkle@gmx.net>
499 - KERNEL32: Wrote file io replacement apis (preliminary version)
500 (not enabled)
501
502 99-11-12: Jens Wiessner <wiessnej@rfi.de>
503 - IMAGEHLP,IMM32,OLECLI32,OLEDLG,OLESVR32,PSAPI,RASAPI32
504 Updates
505 - MSVCRT: Added stubs
506
507 99-11-11: Sander van Leeuwen <sandervl@xs4all.nl>
508 - USER32: Implemented GetWindowContextHelpId & SetWindowContextHelpId
509 Implemented GetKeyboardState (NOT TESTED)
510 Ported SwitchToThisWindow, GetKeyboardLayout, TranslateCharsetInfo
511 GetKeyboardLayoutNameA/W (991031)
512 Fixed Win32Dialog::SetWindowLongA for dlg proc.
513 - GDI32: Implemented EnumFontsA/W. Fixed bugs in EnumFontFamiliesW
514 (NEWTEXTMETRICW is different from NEWTEXTMETRICA)
515 - KERNEL32: Turn off debugging by default when compiling the nodebuginfo
516 build (can be enabled by setting the env. variable WIN32LOG_ENABLED)
517 Fixes for GetVersionSize/Struct for images that aren't loaded.
518 Fixed heap corruption in GetEnvironmentVariableW.
519
520 99-11-10: Christoph Bratschi <cbratschi@datacomm.ch>
521 - USER32: ShowScrollBar: create not existing scrollbars
522
523 99-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
524 - KERNEL32: Rewrote OSLibDosAllocMem to only return addresses
525 aligned at 64kb boundaries (that's what NT's VirtualAlloc
526 does and it fixes problems with MS Word & StarCraft)
527 Fixed wrong dprintf in GetProcAddress.
528 Added code to VirtualAlloc for committing pages of memory mapped
529 files. (Word needs this)
530 - USER32: Implemented WindowFromDC
531 Call WinWaitMsg from WaitMessage instead of calling Open32 api.
532 Added wvsnprintfA export (required for NTDLL)
533 - NTDLL: Link with user32.lib, don't import by name directly
534 (needs to be done for the kernel32 forwards too)
535 - GDI32: Removed flipping of bitmaps in dibsection (no longer necessary)
536
537 99-11-10: Patrick Haller <phaller@gmx.net>
538 - COMDLG32: Fix: erroneous filter data for GetOpenFileName now tolerated
539 Open32 keeps to close to the docs :)
540 - SHELL32: Add: update to WINE19991108
541 - GDI32: Add: Font remapping via ODIN.INI (MS Sans Serif -> WarpSans)
542
543 99-11-10: knut.st.osmundsen <knut.stange.osmundsen@pmsc.no>
544 - PE2LX: Added OLE32 to the lie list. New Base class.
545 - WIN32K: Disabled Yield - this solves problems running win32k
546 at SMP kernels and logging problems on all kernels.
547 Added some parameters.
548
549 99-11-09: Rene Pronk <R.Pronk@twi.tudelft.nl>
550 - USER32: Added support for control mnemonics (Alt-key sends BM_CLICK
551 to buttons if key == mnemonic for that control)
552
553 99-11-09: Christoph Bratschi <cbratschi@datacomm.ch>
554 - GDI32: fixed line functions -> don't draw end pixel
555 - COMCTL32/USER32: removed some old workarounds
556 - USER32: fixed system resource handling
557
558 99-11-09: Sander van Leeuwen <sandervl@xs4all.nl>
559 - OLE32: Renamed dll to OLE32OS2 to avoid conflicts with Lotus SmartSuite's
560 OLE32.dll
561 - OLE32/OLEAUT32/AVIFIL32: compilation fixes
562 - KERNEL32: Fixed lstrcpynAtoW & lstrcpynWtoA, OS/2 unicode api
563 translated up to maxlen characters -> heap corruption
564 in Solitaire. Translate upto min(stringlength+1, maxlen).
565 Also, terminate at strlen(strlength), not maxbuf-1 (lstrcpynWtoA)
566 - KERNEL32: Added code for renaming dlls (i.e. OLE32 <-> OLE32OS2)
567 Odin.ini in bin directory needs to be present for PE loader
568 (includes renaming entries for OLE32 & NETAPI32)
569 NOTE: Dll name in ole32.lib has changed, so a complete recompilation
570 is required!
571 NOTE 2: We might need to add some code to the file io apis in case
572 dirty apps try to read directly from system dlls.
573 - KERNEL32: No need to export private apis by name & ordinal (ord is enough)
574 - INCLUDE\odinwrap.h
575 added wrappers that don't print dbg messages (regardless
576 of whether DEBUG is defined or not)
577 - INCLUDE\misc.h: Added dprintf2 function for extensive logging
578 - KERNEL32,USER32, replaced commented out dprintf calls with dprintf2
579 Changed makefiles to enable dprintf2 (DEBUGALL)
580 - KERNEL32: Wrapper heap apis with ODIN* macros. -> fixes FS corruption
581 - USER32: Fixed LoadMenuIndirectW (didn't call new code)
582
583 99-11-09: Patrick Haller <phaller@gmx.net>
584 - NTDLL: Add: various new functions added (DbgXXX)
585
586 99-11-08: Markus Montkowski <mmontkowski@gmx.de>
587 - WING32: Added first implementation of this old 32bit DLL.
588
589 99-11-08: Edgar Buerkle <Edgar.Buerkle@gmx.net>
590 - KERNEL32: SetCurrentDirectory, CreateDirectory, RemoveDirectory bugfixes.
591 (remove terminating backslash if present)
592
593 99-11-08: Patrick Haller <phaller@gmx.net>
594 - COMCTL32: Fix: EDIT: if obtaining font information fails,
595 prevent division by zero
596 - NTDLL: Add: numerous integer arithmetic functions added
597
598 99-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
599 - KERNEL32: Fixed bug in thread handler (exception handler set
600 at wrong moment)
601 Ported Wine critical section code (991031), Open32
602 doesn't correctly fill in the CRITICAL_SECTION structure.
603 Limit size of memory mapped files.
604 - USER32: PostThreadMessageA/W fix
605
606 99-11-06: Sander van Leeuwen <sandervl@xs4all.nl>
607 - DINPUT: Ported Wine code (991031) (not tested yet)
608 - USER32: Added code for sending mouse events to dinput.dll
609 Added PM <-> win32 key translation (used in dinput.dll)
610
611 99-11-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
612 - USER32: GetMenuStringW fix
613
614 99-11-05: Achim Hasenmueller <achimha@innotek.de>
615 - COMCTL32: Source code cleanup, remove warnings, corrected typecasts
616 Added logging, warnings for stub functions
617 - KERNEL32: Source code cleanup, fix warnings
618 - USER32: Source code cleanup, fix warnings
619
620 99-11-05: Patrick Haller <phaller@gmx.net>
621 - COMCTL32: Fix: TREEVIEW_Edit_Subclass is called with freed infoPtr
622 This only cures the symptoms, not the origin!
623
624 99-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
625 - USER32: Fixed InsertMenuA
626 Message translation fix for WM_USER+n messages (GetMessage)
627 Extra translation.
628 Rewrote/Ported LoadStringA/W (similar to Wine now)
629 - KERNEL32: Changed FindResource, string id translation should be done
630 in LoadStringA/W (done that way in Wine)
631 Fixed GetModuleHandleA
632
633 99-11-05: Jens Wiessner <wiessnej@rfi.de>
634 - MSVFW32: Updated to Wine level 991031
635 - IMM32: Replaced some FIXME entries with dprintf;
636 - KERNEL32: Added _wsnprintfA to .DEF file for export (MSACM32 needs this)
637 - INCLUDE: New MSACM.H from Wine991031 (MSACM32 needs this)
638 - MSACM32: New MSACM32.DLL (Ported from Wine9910131)
639
640 99-11-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
641 - GDI32: Fixes for StretchDIBits & GetDIBColorTable
642 - USER32: Fixes for ArrangeIconicWindows & ShowOwnedPopups
643 NULL pointer checks in hasWindowName/hasClassName/FindClass
644 Message translation fix for WM_USER+n messages
645 - OLE32: Always create OLE window class
646 - KERNEL32: Null pointer check in lstrcmpiA
647 - SHELL32: Corrected export of Shell_GetCachedImageIndex
648
649 99-11-04: Sander van Leeuwen <sandervl@xs4all.nl>
650 - SHLWAPI: Fixed makefile
651 - USER32: Put back Dani's dialog fix (WS_CLIPSIBLINGS bit for dialog controls)
652 (fixes winhlp32 & comboboxes)
653
654 99-11-04: Patrick Haller <phaller@gmx.net>
655 - WNETAP32: Add: numerous undocumented functions stubbed
656 - ADVAPI32: Add: LsaXXX-functions stubbed
657 - USER32: Fix: wvsprintfA/W fixed (buffer overwrite)
658 - KERNEL32: Fix: unnamed kernel objects (events, mutexes, semaphores)
659
660 99-11-03: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
661 - Makefiles: Changes to build the libraries first
662
663 99-11-03: Sander van Leeuwen <sandervl@xs4all.nl>
664 - COMDLG32: Import from shlwapi as the original Wine code does
665 - SHELLL32: Added exports
666 - SHLWAPI: Link with shell32.lib for forwarders + added exports
667 - USER32: Fixed mouseactivate for subclassed OS/2 windows (scrollbars)
668 Fixed CreateIconIndirect (Wine file dialog now shows button
669 icons correctly)
670 Don't clear WS_CLIPSIBLINGS bit in OSSetWindowStyle.
671 Removed fix in PMFRAME WM_ADJUSTWINDOWPOS: Previous fix breaks
672 a lot of apps (button.exe/style.exe/header4.exe)
673 (fix = call default frame handler when receiving this msg
674 when the window hasn't been 'created' yet)
675
676 99-11-03: Christoph Bratschi <cbratschi@datacomm.ch>
677 - USER32: fixed modal dialogs
678 added WM_CONTEXTMENU
679 - COMCTL32: implemented statusbar size grip
680
681 99-11-03: Patrick Haller <phaller@gmx.net>
682 - KERNEL32: Fix: undocumented behaviour in SearchPathA
683 and bugfix in SearchPathW
684 - USER32: Fix: TrackPopupMenuEx lpPM can be NULL
685 Fix LoadBitmapA checked for incorrect return value
686
687 99-11-02 Markus Montkowski <mmontkowski@gmx.de>
688 - DDRAW: Changed debug output to DDRAW: ...
689 Copied Framebuffer if in colorconversion mode for Normal Blits to
690 the primary surface. => Map Editor of Red Alert works.
691
692 00-11-02: Achim Hasenmueller <achimha@innotek.de>
693 - COMCTL32: Incorporated latest WINE 991031 updates
694 Note: listview doesn't paint properly now. Will be fixed later.
695
696 99-11-02: Markus Montkowski <mmontkowski@gmx.de>
697 - DDRAW: Changed interface handling of Surfaces=> Quake 2 runs again!
698
699 99-11-02: Patrick Haller <phaller@gmx.net>
700 - SHELL32: Up to current WINE level
701 - SHLWAPI: Created (in WINE it mostly links to SHELL32)
702
703 99-11-02: Sander van Leeuwen <sandervl@xs4all.nl>
704 - INCLUDE\odinwrap.h:
705 fixed wrong define (_ODINWARP instead of _ODINWRAP)
706 Only check the heap for consistency when DEBUG_ODINHEAP is
707 defined.
708 - USER32: Uncommented EDIT_NOTIFY_PARENT call in EDIT_WM_SetFocus
709 (yesterday's showwindow fix makes sure no WM_SETFOCUS msgs
710 arrive before the dialog received it's WM_INITDIALOG msg)
711 Fixed more FS corruption in dc.cpp.
712 - SHELL32: Added extra exports for comdlg32
713 - COMDLG32: Ported Wine file & find common dialogs (991031)
714 Find & Replace dialogs enabled, Wine code called for
715 file dialogs if the app supplies a dialog template.
716 NOTE: Disabled for now. Comctl32 isn't stable enough
717 for the Win95 style Wine comdlg dialogs.
718 Fixed check for find/replace dialog. Notepad uses 32 byte
719 buffer, so why does the wine code fail for < 80 bytes?
720 Fixed display of find/replace dialog -> if not hooked
721 show dialog!
722 - makefiles: Added debugsmp/nodebuginfosmp/releasesmp options to
723 start two nmake process to build everything on two cpus.
724
725 99-11-01: Sander van Leeuwen <sandervl@xs4all.nl>
726 - USER32: Delete all process windows & classes in exitlist handler
727 Set hwndInsertBehind to HWND_BOTTOM for group boxes
728 (fixes problems when groupbox control is defined after
729 controls inside it in dialog template)
730 Mouse activate fix.
731 Don't activate child windows in ShowWindow.
732 - WINMM: Return failure for waveOutGetDevCapsA/W when there's no
733 audio hardware present.
734
735
736 99-11-01: Daniela Engert <dani@ngrt.de>
737 - USER32: add WS_CLIPSIBLINGS to not-WS_GROUP style STATIC controls
738 (fixes missing text in WELCOME)
739
740 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
741
742 This is a hack!
743
744 Dialog controls which contain/surround other controls *need* to be
745 created with the WS_CLIPSIBLINGS style.
746
747 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Note: See TracBrowser for help on using the repository browser.