source: trunk/changelog@ 1676

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

* empty log message *

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