source: trunk/changelog@ 1692

Last change on this file since 1692 was 1692, checked in by cbratschi, 26 years ago

* empty log message *

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