source: trunk/changelog@ 1740

Last change on this file since 1740 was 1740, checked in by sandervl, 26 years ago

* empty log message *

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