source: trunk/changelog@ 1672

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

* empty log message *

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