source: trunk/changelog@ 1661

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

* empty log message *

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