source: trunk/changelog@ 1736

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

* empty log message *

File size: 14.0 KB
Line 
1 /* $Id: changelog,v 1.449 1999-11-14 13:13:40 achimha Exp $ */
2
3 99-11-14: Achim Hasenmueller <achimha@innotek.de>
4 - COMCTL32: Fixed strdupAtoW/WtoA calls
5 Implemented missing undocumted string functions
6
7 99-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
8 - USER32: Implemented GetMenuItemRect
9 Fixed SetParent bug (use frame (not client) handle)
10
11 99-11-14: Edgar Buerkle <Edgar.Buerkle@gmx.net>
12 - USER32: Fixed WindowFromPoint
13
14 99-11-14: David Raison <djr@lemur.co.uk>
15 - OLEAUT32: Added beginnings of IPicture interface for VB6 support.
16 Mostly stubs, but enough to get a simple VB6 app started.
17 ICreatePictureIndirect updated.
18
19 99-11-13: Christoph Bratschi <cbratschi@datacomm.ch>
20 - USER32: fixed more edit bugs
21 merged controls with wine-991031
22
23 99-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
24 - KERNEL32: Fixed problem with ReadFile & aliased memory
25 (DosRead doesn't like writing to memory addresses
26 returned by DosAliasMem -> search for original
27 memory mapped pointer and use that one)
28 -> fixes problems in Lotus Notes 5.0
29 Also commit these pages before calling DosRead as exceptions
30 in the kernel can't be handled by us.
31 - KERNEL32\PELDR:
32 Better error reporting
33 - COMDLG32: Fixed bug in strlen: first check if pointer != NULL (FILEDLG95_InitUI)
34 Bugfix: ofn->lpTemplateName can be string id, so
35 don't always treat it as a string
36 Check pointer returned by CBGetItemDataPtr, if != -1, then
37 it's a string. (FILEDLG95_OnOpen)
38
39 99-11-12: Christoph Bratschi <cbratschi@datacomm.ch>
40 - USER32: fixed several edit bugs
41
42 99-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
43 - GDI32: Changes + fixes in DIBSection bitblt (fixes Quake 2)
44 - KERNEL32: Added handlemanager class for device drivers
45 Put devio.cpp in device driver class. (NOT TESTED)
46
47 99-11-12: Edgar Buerkle <Edgar.Buerkle@gmx.net>
48 - KERNEL32: Wrote file io replacement apis (preliminary version)
49 (not enabled)
50
51 99-11-12: Jens Wiessner <wiessnej@rfi.de>
52 - IMAGEHLP,IMM32,OLECLI32,OLEDLG,OLESVR32,PSAPI,RASAPI32
53 Updates
54 - MSVCRT: Added stubs
55
56 99-11-11: Sander van Leeuwen <sandervl@xs4all.nl>
57 - USER32: Implemented GetWindowContextHelpId & SetWindowContextHelpId
58 Implemented GetKeyboardState (NOT TESTED)
59 Ported SwitchToThisWindow, GetKeyboardLayout, TranslateCharsetInfo
60 GetKeyboardLayoutNameA/W (991031)
61 Fixed Win32Dialog::SetWindowLongA for dlg proc.
62 - GDI32: Implemented EnumFontsA/W. Fixed bugs in EnumFontFamiliesW
63 (NEWTEXTMETRICW is different from NEWTEXTMETRICA)
64 - KERNEL32: Turn off debugging by default when compiling the nodebuginfo
65 build (can be enabled by setting the env. variable WIN32LOG_ENABLED)
66 Fixes for GetVersionSize/Struct for images that aren't loaded.
67 Fixed heap corruption in GetEnvironmentVariableW.
68
69 99-11-10: Christoph Bratschi <cbratschi@datacomm.ch>
70 - USER32: ShowScrollBar: create not existing scrollbars
71
72 99-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
73 - KERNEL32: Rewrote OSLibDosAllocMem to only return addresses
74 aligned at 64kb boundaries (that's what NT's VirtualAlloc
75 does and it fixes problems with MS Word & StarCraft)
76 Fixed wrong dprintf in GetProcAddress.
77 Added code to VirtualAlloc for committing pages of memory mapped
78 files. (Word needs this)
79 - USER32: Implemented WindowFromDC
80 Call WinWaitMsg from WaitMessage instead of calling Open32 api.
81 Added wvsnprintfA export (required for NTDLL)
82 - NTDLL: Link with user32.lib, don't import by name directly
83 (needs to be done for the kernel32 forwards too)
84 - GDI32: Removed flipping of bitmaps in dibsection (no longer necessary)
85
86 99-11-10: Patrick Haller <phaller@gmx.net>
87 - COMDLG32: Fix: erroneous filter data for GetOpenFileName now tolerated
88 Open32 keeps to close to the docs :)
89 - SHELL32: Add: update to WINE19991108
90 - GDI32: Add: Font remapping via ODIN.INI (MS Sans Serif -> WarpSans)
91
92 99-11-10: knut.st.osmundsen <knut.stange.osmundsen@pmsc.no>
93 - PE2LX: Added OLE32 to the lie list. New Base class.
94 - WIN32K: Disabled Yield - this solves problems running win32k
95 at SMP kernels and logging problems on all kernels.
96 Added some parameters.
97
98 99-11-09: Rene Pronk <R.Pronk@twi.tudelft.nl>
99 - USER32: Added support for control mnemonics (Alt-key sends BM_CLICK
100 to buttons if key == mnemonic for that control)
101
102 99-11-09: Christoph Bratschi <cbratschi@datacomm.ch>
103 - GDI32: fixed line functions -> don't draw end pixel
104 - COMCTL32/USER32: removed some old workarounds
105 - USER32: fixed system resource handling
106
107 99-11-09: Sander van Leeuwen <sandervl@xs4all.nl>
108 - OLE32: Renamed dll to OLE32OS2 to avoid conflicts with Lotus SmartSuite's
109 OLE32.dll
110 - OLE32/OLEAUT32/AVIFIL32: compilation fixes
111 - KERNEL32: Fixed lstrcpynAtoW & lstrcpynWtoA, OS/2 unicode api
112 translated up to maxlen characters -> heap corruption
113 in Solitaire. Translate upto min(stringlength+1, maxlen).
114 Also, terminate at strlen(strlength), not maxbuf-1 (lstrcpynWtoA)
115 - KERNEL32: Added code for renaming dlls (i.e. OLE32 <-> OLE32OS2)
116 Odin.ini in bin directory needs to be present for PE loader
117 (includes renaming entries for OLE32 & NETAPI32)
118 NOTE: Dll name in ole32.lib has changed, so a complete recompilation
119 is required!
120 NOTE 2: We might need to add some code to the file io apis in case
121 dirty apps try to read directly from system dlls.
122 - KERNEL32: No need to export private apis by name & ordinal (ord is enough)
123 - INCLUDE\odinwrap.h
124 added wrappers that don't print dbg messages (regardless
125 of whether DEBUG is defined or not)
126 - INCLUDE\misc.h: Added dprintf2 function for extensive logging
127 - KERNEL32,USER32, replaced commented out dprintf calls with dprintf2
128 Changed makefiles to enable dprintf2 (DEBUGALL)
129 - KERNEL32: Wrapper heap apis with ODIN* macros. -> fixes FS corruption
130 - USER32: Fixed LoadMenuIndirectW (didn't call new code)
131
132 99-11-09: Patrick Haller <phaller@gmx.net>
133 - NTDLL: Add: various new functions added (DbgXXX)
134
135 99-11-08: Markus Montkowski <mmontkowski@gmx.de>
136 - WING32: Added first implementation of this old 32bit DLL.
137
138 99-11-08: Edgar Buerkle <Edgar.Buerkle@gmx.net>
139 - KERNEL32: SetCurrentDirectory, CreateDirectory, RemoveDirectory bugfixes.
140 (remove terminating backslash if present)
141
142 99-11-08: Patrick Haller <phaller@gmx.net>
143 - COMCTL32: Fix: EDIT: if obtaining font information fails,
144 prevent division by zero
145 - NTDLL: Add: numerous integer arithmetic functions added
146
147 99-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
148 - KERNEL32: Fixed bug in thread handler (exception handler set
149 at wrong moment)
150 Ported Wine critical section code (991031), Open32
151 doesn't correctly fill in the CRITICAL_SECTION structure.
152 Limit size of memory mapped files.
153 - USER32: PostThreadMessageA/W fix
154
155 99-11-06: Sander van Leeuwen <sandervl@xs4all.nl>
156 - DINPUT: Ported Wine code (991031) (not tested yet)
157 - USER32: Added code for sending mouse events to dinput.dll
158 Added PM <-> win32 key translation (used in dinput.dll)
159
160 99-11-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
161 - USER32: GetMenuStringW fix
162
163 99-11-05: Achim Hasenmueller <achimha@innotek.de>
164 - COMCTL32: Source code cleanup, remove warnings, corrected typecasts
165 Added logging, warnings for stub functions
166 - KERNEL32: Source code cleanup, fix warnings
167 - USER32: Source code cleanup, fix warnings
168
169 99-11-05: Patrick Haller <phaller@gmx.net>
170 - COMCTL32: Fix: TREEVIEW_Edit_Subclass is called with freed infoPtr
171 This only cures the symptoms, not the origin!
172
173 99-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
174 - USER32: Fixed InsertMenuA
175 Message translation fix for WM_USER+n messages (GetMessage)
176 Extra translation.
177 Rewrote/Ported LoadStringA/W (similar to Wine now)
178 - KERNEL32: Changed FindResource, string id translation should be done
179 in LoadStringA/W (done that way in Wine)
180 Fixed GetModuleHandleA
181
182 99-11-05: Jens Wiessner <wiessnej@rfi.de>
183 - MSVFW32: Updated to Wine level 991031
184 - IMM32: Replaced some FIXME entries with dprintf;
185 - KERNEL32: Added _wsnprintfA to .DEF file for export (MSACM32 needs this)
186 - INCLUDE: New MSACM.H from Wine991031 (MSACM32 needs this)
187 - MSACM32: New MSACM32.DLL (Ported from Wine9910131)
188
189 99-11-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
190 - GDI32: Fixes for StretchDIBits & GetDIBColorTable
191 - USER32: Fixes for ArrangeIconicWindows & ShowOwnedPopups
192 NULL pointer checks in hasWindowName/hasClassName/FindClass
193 Message translation fix for WM_USER+n messages
194 - OLE32: Always create OLE window class
195 - KERNEL32: Null pointer check in lstrcmpiA
196 - SHELL32: Corrected export of Shell_GetCachedImageIndex
197
198 99-11-04: Sander van Leeuwen <sandervl@xs4all.nl>
199 - SHLWAPI: Fixed makefile
200 - USER32: Put back Dani's dialog fix (WS_CLIPSIBLINGS bit for dialog controls)
201 (fixes winhlp32 & comboboxes)
202
203 99-11-04: Patrick Haller <phaller@gmx.net>
204 - WNETAP32: Add: numerous undocumented functions stubbed
205 - ADVAPI32: Add: LsaXXX-functions stubbed
206 - USER32: Fix: wvsprintfA/W fixed (buffer overwrite)
207 - KERNEL32: Fix: unnamed kernel objects (events, mutexes, semaphores)
208
209 99-11-03: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
210 - Makefiles: Changes to build the libraries first
211
212 99-11-03: Sander van Leeuwen <sandervl@xs4all.nl>
213 - COMDLG32: Import from shlwapi as the original Wine code does
214 - SHELLL32: Added exports
215 - SHLWAPI: Link with shell32.lib for forwarders + added exports
216 - USER32: Fixed mouseactivate for subclassed OS/2 windows (scrollbars)
217 Fixed CreateIconIndirect (Wine file dialog now shows button
218 icons correctly)
219 Don't clear WS_CLIPSIBLINGS bit in OSSetWindowStyle.
220 Removed fix in PMFRAME WM_ADJUSTWINDOWPOS: Previous fix breaks
221 a lot of apps (button.exe/style.exe/header4.exe)
222 (fix = call default frame handler when receiving this msg
223 when the window hasn't been 'created' yet)
224
225 99-11-03: Christoph Bratschi <cbratschi@datacomm.ch>
226 - USER32: fixed modal dialogs
227 added WM_CONTEXTMENU
228 - COMCTL32: implemented statusbar size grip
229
230 99-11-03: Patrick Haller <phaller@gmx.net>
231 - KERNEL32: Fix: undocumented behaviour in SearchPathA
232 and bugfix in SearchPathW
233 - USER32: Fix: TrackPopupMenuEx lpPM can be NULL
234 Fix LoadBitmapA checked for incorrect return value
235
236 99-11-02 Markus Montkowski <mmontkowski@gmx.de>
237 - DDRAW: Changed debug output to DDRAW: ...
238 Copied Framebuffer if in colorconversion mode for Normal Blits to
239 the primary surface. => Map Editor of Red Alert works.
240
241 00-11-02: Achim Hasenmueller <achimha@innotek.de>
242 - COMCTL32: Incorporated latest WINE 991031 updates
243 Note: listview doesn't paint properly now. Will be fixed later.
244
245 99-11-02: Markus Montkowski <mmontkowski@gmx.de>
246 - DDRAW: Changed interface handling of Surfaces=> Quake 2 runs again!
247
248 99-11-02: Patrick Haller <phaller@gmx.net>
249 - SHELL32: Up to current WINE level
250 - SHLWAPI: Created (in WINE it mostly links to SHELL32)
251
252 99-11-02: Sander van Leeuwen <sandervl@xs4all.nl>
253 - INCLUDE\odinwrap.h:
254 fixed wrong define (_ODINWARP instead of _ODINWRAP)
255 Only check the heap for consistency when DEBUG_ODINHEAP is
256 defined.
257 - USER32: Uncommented EDIT_NOTIFY_PARENT call in EDIT_WM_SetFocus
258 (yesterday's showwindow fix makes sure no WM_SETFOCUS msgs
259 arrive before the dialog received it's WM_INITDIALOG msg)
260 Fixed more FS corruption in dc.cpp.
261 - SHELL32: Added extra exports for comdlg32
262 - COMDLG32: Ported Wine file & find common dialogs (991031)
263 Find & Replace dialogs enabled, Wine code called for
264 file dialogs if the app supplies a dialog template.
265 NOTE: Disabled for now. Comctl32 isn't stable enough
266 for the Win95 style Wine comdlg dialogs.
267 Fixed check for find/replace dialog. Notepad uses 32 byte
268 buffer, so why does the wine code fail for < 80 bytes?
269 Fixed display of find/replace dialog -> if not hooked
270 show dialog!
271 - makefiles: Added debugsmp/nodebuginfosmp/releasesmp options to
272 start two nmake process to build everything on two cpus.
273
274 99-11-01: Sander van Leeuwen <sandervl@xs4all.nl>
275 - USER32: Delete all process windows & classes in exitlist handler
276 Set hwndInsertBehind to HWND_BOTTOM for group boxes
277 (fixes problems when groupbox control is defined after
278 controls inside it in dialog template)
279 Mouse activate fix.
280 Don't activate child windows in ShowWindow.
281 - WINMM: Return failure for waveOutGetDevCapsA/W when there's no
282 audio hardware present.
283
284
285 99-11-01: Daniela Engert <dani@ngrt.de>
286 - USER32: add WS_CLIPSIBLINGS to not-WS_GROUP style STATIC controls
287 (fixes missing text in WELCOME)
288
289 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
290
291 This is a hack!
292
293 Dialog controls which contain/surround other controls *need* to be
294 created with the WS_CLIPSIBLINGS style.
295
296 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Note: See TracBrowser for help on using the repository browser.