source: trunk/changelog@ 1149

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

* empty log message *

File size: 62.7 KB
Line 
1 /* $Id: changelog,v 1.274 1999-10-06 07:59:18 sandervl Exp $ */
2
3 99-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: Fixed memory leaks in SetWindowTextA/W window class methods
5
6 99-10-06: Patrick Haller <phaller@gmx.net>
7 - KERNEL32: Fix for DLLs without Resource Segment (pResDir == NULL)
8
9 99-10-05: Christoph Bratschi <cbratschi@datacomm.ch>
10 - USER32: rewrote color management
11
12 99-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
13 - KERNEL32: Set fs:0 to -1 in OS2UnsetExceptionHandler.
14 Prevents crash due to corrupted handler chain (see
15 comments in that function)
16 - ODIN32API: Remove exception handler set & unset. Not necessary
17 as it's also done in the start method of an exe image.
18
19 99-10-04: Patrick Haller <phaller@gmx.net>
20 - SHELL32\NEW: Compilation fix (indirectly included win32type.h)
21 - KERNEL32: Support for DisableThreadLibraryCalls
22
23 99-10-04: Edgar Buerkle <Edgar.Buerkle@gmx.net>
24 - USER32: Fixes for window style update, mouse button messages,
25 WS_CAPTION style and apps with a dialog as their main window.
26 (set owner to desktop)
27 - KERNEL32: Extra checks for valid heap pointers
28
29 99-10-04: Sander van Leeuwen <sandervl@xs4all.nl>
30 - USER32: Deleted dialog.cpp
31 Set last error to 0 if dialog creation succeeds.
32 Added flag to distinguish between messages sent by PM and
33 those sent by apps
34 Handle WM_SETTEXT messages passed to default window handler
35 (only if not sent by PM)
36 - VERSION: Fix for string compares in VersionInfo32_FindChild (has
37 to be a lstrcmpniW)
38 - SHELL32: Removed nameid.h include in she.cpp & sh.cpp. Fixed makefile
39 addition for export library (extra ".." for tool path)
40 - DPLAY, MSACM32: Compilation fix (indirectly included win32type.h)
41 - KERNEL32: Fixed getVersionStruct for PE & LX images (didn't copy
42 version data before)
43 Fixed module name lookup for win32 images executed by the PE
44 loader. (can't use OSLibQueryModuleHandle for those)
45 Added lstrcmpniW function
46 Set full path for LX images
47 Support for retrieving the first resource of a certain type
48 (version ids no longer hardcoded as id 1; just get the first one
49 present)
50
51 99-10-04: Jens Wiessner <wiessnej@rfi.de>
52 - CRTDLL: Implemented functions + added stubs
53 - MSVCRT: More stubs + crtdll forwarders
54
55 99-10-04: Yuri Dario <mc6530@mclink.it>
56 - ddeml.h: new macros
57 - mmsystem.h: changed sndPlaySound and mciCommand prototypes (as in MS sdk)
58 - shlobh.h: added ifdef for direct inclusion
59 - winbase.h: added UnlockResource macro
60 - windef.h: changed return type (maybe also other functions are wrong)
61 - windows.h: included ddeml.h
62 - windowsx.h: added macros
63 - wingdi.h: added win95 bitmap structures
64 - winuser.h: few macros and changed DLGTEMPLATE prototypes as in MS sdk
65 - crtdll.cpp: now includes libc/locale.h, so toolkit headers are included also for VA36
66 - shell32/makefile: added code for library export.
67 - shell32/new/makefile: added code for library export.
68 - dialog.cpp: DLGTEMPLATE changes
69 - windlg.cpp: DLGTEMPLATE changes.
70 - win32k/makefile: corrected paths
71 - win32k/include/pe2lx.h: this section should be included for VA36
72
73 99-10-03: Daniela Engert <dani@ngrt.de>
74 - USER32: WM_MOUSEMOVE bugfix (removed check for captured mouse)
75
76 99-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
77 - USER32: Updated window class with isMDIClient method
78 Fixed DrawTextExA/W compile errors (different parameter types)
79
80 99-10-02: Christoph Bratschi <cbratschi@datacomm.ch>
81 - USER32: DrawTextExA/W: implemented DT_END_ELLIPSIS
82 added DrawTextExA/W to header files
83
84 99-10-02: Edgar Buerkle <Edgar.Buerkle@gmx.net>
85 - VERSION: Allocation bugfix in VerQueryValueA
86 - USER32: Added style changes for PM windows + don't clear WS_VISIBLE
87 flag when converting window styles. (fixes buttons in winhlp32)
88
89 99-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
90 - DDRAW: ifdef'ed out code that causes crash (OS2Surface destructor)
91 Free original translation buffer, not the one aligned to qword
92 boundary.
93 - USER32: Create frame window for windows with desktop as parent (i.e. WS_POPUP)
94 This makes sure WM_ACTIVATE messages are sent.
95 Scrollbar changes.
96 Call DestroyWindow when DefWndProc receives WM_CLOSE msg.
97 - KERNEL32: Allocate memory from heap when HeapReAlloc is called with
98 a NULL memory pointer (WINE listbox control depends on this)
99 - AVIFIL32: Compilation fix
100
101 99-10-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
102 - KERNEL32: Skip spaces in command line string
103 - USER32: Fix for MessageBoxA (window handle conversion)
104 Fixes for combobox (handles null pointers)
105 - GDI32: Added OSLibSetDIBitsToDevice
106
107 99-10-01: Jens Wiessner <wiessnej@rfi.de>
108 - CRTDLL: Implemented functions + added stubs
109 - MSVCRT: More stubs + crtdll forwarders
110
111 99-09-29: Daniela Engert <dani@ngrt.de>
112 - USER32: improved timer handling for caret blinking.
113 recreate carets on focus change if needed.
114
115 99-09-29: Sander van Leeuwen <sandervl@xs4all.nl>
116 - USER32: Almost completed standard window scrollbars.
117 Fixed WM_ACTIVATE message, generate WM_ACTIVATEAPP message
118 when WM_ACTIVATE is received. (instead of WM_SETFOCUS)
119 NOTE: Still not working correctly. Too many WM_ACTIVATEAPP msgs generated.
120 Always send Odin window handles from pmwindow.cpp to win32wbase.cpp.
121 Send WM_CHILDACTIVATE msg to MDI child windows.
122
123 99-09-28: Christoph Bratschi <cbratschi@datacomm.ch>
124 - USER32: Mouse input functions: SetCapture() fixed
125 SystemParametersInfo(): fonts fixed
126 GetSystemMetrics(): changed icon size to 32x32
127 Sorting and fixing user32.cpp
128
129 99-09-28: David Raison <djr@lemur.co.uk>
130 - KERNEL32: Fixed GetComputerNameA
131
132 99-09-28: Jens Wiessner <wiessnej@rfi.de>
133 - CRTDLL: Updated _except_handler2 + added Wine source changes
134 - MSVCRT: Created. Forwards most apis to CRTDLL or NTDLL.
135
136 99-09-28: Sander van Leeuwen <sandervl@xs4all.nl>
137 - USER32: Only generate WM_CHAR when TranslateMessage is called for
138 WM_KEYDOWN. (TODO: WM_SYSCHAR)
139
140 99-09-28: Daniela Engert <dani@ngrt.de>
141 - USER32: Caret functions implemented
142 ScrollDC implemented
143 ScrollWindowEx implemented
144
145 99-09-28: Patrick Haller <phaller@gmx.net>
146 - KERNEL32: Add: debug info for missing API imports (WinImagePeLdr)
147 Fix: source cleanup, introduction of WIN32.DIR.SYSTEM and WIN32.DIR.WINDOWS
148 as overrides over the STUPID Open32 result. I don't want to have Win32 apps
149 messing up x:\OS2 ....
150
151 99-09-26: Daniela Engert <dani@ngrt.de>
152 - USER32: SetTimer/KillTimer work now.
153
154 99-09-26: Achim Hasenmueller <achimha@innotek.de>
155 - COMCTL32: Merged with WINE 990923 changes
156 (propsheet.c not fully done)
157
158 99-09-26: Sander van Leeuwen <sandervl@xs4all.nl>
159 - USER32: Started with standard window scrollbar implementation
160 Rewrote ScrollWindow (seems to work ok)
161 Set text bugfix (crash in about dialog box of generic.exe)
162 Send WM_INITDLG after creation of dialog controls.
163 Set last error to 0 at end of BeginPaint/EndPaint.
164 Set last error when window not found (window.cpp/windlg.cpp)
165 WM_(SYS)KEYUP/DOWN bugfix (repeat cnt & scancode reversed)
166 Generate WM_CHAR message when TranslateMessage is called for
167 WM_CHAR (PM) message. (sent after WM_(SYS)KEYUP/DOWN)
168
169 99-09-25: Christoph Bratschi <cbratschi@datacomm.ch>
170 - USER32: WS_EX_* 3D frame support for child windows
171 - USER32: Double click handling changed
172
173 99-09-25: Sander van Leeuwen <sandervl@xs4all.nl>
174 - USER32: Cursor fixes. Cursor shown correctly in winhlp32.
175 Don't call WinDefWindowProc for WM_MOUSEMOVE (resets
176 cursor to system default)
177 RedrawWindow: set window pointer to desktop window when hwnd == NULL
178 - KERNEL32: Cursor & cursorgroup fixes
179 Fixes for thread local memory allocation (only done for thread 0)
180 Create TEB selector + memory for threads we don't create.
181 (i.e. DART threads in WINMM)
182 NOTE: Not tested.
183 - USER32\OLD, KERNEL32\OLD: Fixed makefiles + changes to make them
184 work with new dlls.
185
186 99-09-25: Daniela Engert <dani@ngrt.de>
187 - USER32: ClientToScreen and ScreenToClient didn't work -> fixed.
188
189 99-09-24: David Raison <djr@lemur.co.uk>
190 - OLE32: Ported remaining files pertaining to OLE32 from WINE
191 - OLEAUT32: Patched OaBuildVersion to level 0x1E...
192
193 99-09-24: Sander van Leeuwen <sandervl@xs4all.nl>
194 - USER32: Rewrote menu code to use Open32 (==PM) menu handles
195 Note: Uses mostly Open32 apis; they work fine, but maybe
196 we should write our own someday.
197 Cursor fixes. Not working in winhlp32 yet though.
198 - KERNEL32: Cursor & cursorgroup fixes
199
200 99-09-23: Patrick Haller <phaller@gmx.net>
201 - KERNEL32: Fix: WinImgRes:findResourceW erroneously tried to free
202 numerical resource IDs instead of translated Unicode
203 strings.
204 - USER32: Fix: in USER32:HeapShared:getmoreShared()
205 Fix: in USER32:WIN32WMDIClient:childActivate()
206 Fix: in USER32:WinMenu:GetSubMenu
207 now returns Win32MenuRes object instead of PM handle
208 Fix: in USER32:WinMenu:GetSystemMenu
209 now returns Win32MenuRes object instead of PM handle
210 Fix: in USER32:Char:CharPrevW intermixed arguments
211
212 99-09-23: Jens Wiessner <wiessnej@rfi.de>
213 - CRTDLL: Added stubs, implemented some stubs
214 - IMAGEHLP, IMM32, MSACM32, MSVFW32, OLEDLG,
215 OLECLI32, OLESVR32, PSAPI, RASPI32
216 Added dprintfs.
217
218 99-09-23: Sander van Leeuwen <sandervl@xs4all.nl>
219 - WINMM: Changed WinPostMsg calls into PostMessageA as win32 window
220 handles are not the same as PM handles anymore.
221 - USER32: Adding desktop window class. When user32 is loaded, a desktop
222 window object is created.
223 GetDesktopWindow returns handle of this window.
224 Winhlp32 no longer crashes immediately, but briefly shows
225 it's window before quitting.
226 Create windows always with HWND_TOP. The if statement (hwndLinkAfter)
227 in the CreateWindowExA method of Win32BaseWindow class messes
228 up the Z-order of dialog controls (i.e. buttons in a group box)
229 - COMDLG32: Fixed all common dialogs. (translate our handle to real PM handle)
230
231 99-09-22: David Raison <djr@lemur.co.uk>
232 - KERNEL32: Return "Service Pack 3" as CSD string in GetVersionExA/W
233
234 99-09-22: Yuri Dario <mc6530@mclink.it>
235 - MISC: Fixed WINELIB macro's in wingdi.h, added fixes to headers
236 for VAC 3.6.5
237 - ODINCRT: Also link with SOMLIB (VAC 3.6.5)
238 - CRTDLL: Compilation fix for VAC 3.6.5
239 - TOOLS\COMMON: Minor change to makefile
240 - TOOLS\IMPDEF: Minor change to makefile
241 - TOOLS\WRC: Makefile fixes
242
243 99-09-22: Rene Pronk <R.Pronk@twi.tudelft.nl>
244 - USER32: Changed WM_CHAR PM handling to generate WM_(SYS)KEYUP/DOWN
245 messages.
246 Note: Not complete as TranslateMessage doesn't translate
247 ascii keys to WM_CHAR messages.
248
249 99-09-22: Sander van Leeuwen <sandervl@xs4all.nl>
250 - USER32: Removed GetDesktopWindow fix
251 Ported getNextDlgTabItem & getDlgItem
252
253 99-09-21: Daniela Engert <dani@ngrt.de>
254 - USER32: background erasing/painting stuff hopefully finished.
255
256 99-09-21: Patrick Haller <phaller@gmx.net>
257 - KERNEL32: Add: GetFileAttributesExA/W implemented (ugly)
258
259 99-09-21: Sander van Leeuwen <sandervl@xs4all.nl>
260 - KERNEL32: Fixed cursor group conversion
261 - PELDR: Committed my latest sources. (rewrite for new kernel32 image classes)
262
263 99-09-21: Edgar Buerkle <100566.557@compuserve.com>
264 - USER32: Fixed GetDesktopWindow, added message handling for WM_TIMER
265 added code to choose best icon from icon group. (in OSLibWinCreateIcon)
266 - KERNEL32: Fix for converting icons & icon groups
267
268 99-09-19: David Raison <djr@lemur.co.uk>
269 - OLE32: Added AntiMoniker,
270 Updated regsvr32 to use RegisterLxExe
271
272 99-09-20: Sander van Leeuwen <sandervl@xs4all.nl>
273 - USER32: Fix background of button, group & static text
274 NOTE: Changed default behaviour of WM_CTLCOLOR* handling.
275 Don't know if this is correct, but it fixes problems
276 in dialogs (text with white instead of gray background)
277
278 99-09-20: Markus Montkowski
279 - WNASPI32: full implementation via ASPIROUT$ device driver.
280
281 99-09-19: Sander van Leeuwen <sandervl@xs4all.nl>
282 - USER32: Increased font pointsize for dialog (multiplied by two)
283 (probably not the right way to do things, but it works for the
284 dialogs in Solitaire)
285 Activated MsgEraseBackground method again (pmwindow.cpp)
286 Dialogs don't receive those otherwise.
287 (may need to be changed back again)
288
289 99-09-19: David Raison <djr@lemur.co.uk>
290 - USER32: Partially implemented MessageBoxIndirectA/W (forwarded to MessageBox)
291
292 99-09-18: Sander van Leeuwen <sandervl@xs4all.nl>
293 - KERNEL32: Added resource support for win32 apps compiled in OS/2
294 - INCLUDE: Header file changes for win32 apps compiled in OS/2
295 - VERSION: Create correct import lib
296 - WINMM: Create correct import lib
297 - MSACM32: Link with winmm.lib, don't import apis from .def file
298 - MSVFW32: Link with winmm.lib, don't import apis from .def file
299
300 99-09-18: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
301 - KERNEL32: Implemented lstrncmpiA
302
303 99-09-18: Jens Wiessner <wiessnej@rfi.de>
304 - CRTDLL: Added stubs
305 - SHELL32(NEW)/MSACM32/MSFW32: Link with kernel32 for lstrncmpiA
306
307 99-09-17: Daniela Engert <dani@ngrt.de>
308 - USER32: Fix: window focus management.
309 OSLIBWIN.H: the definitions of OSLIB_HWND_DESKTOP and
310 OSLIB_HWND_OBJECT were 1 off (with respect to the definition
311 in PMWIN.H)! So OSLIB_HWND_DESKTOP was in effect NULLHANDLE,
312 and OSLIB_HWND_OBJECT was HWND_DESKTOP.
313
314 99-09-16: Daniela Engert <dani@ngrt.de>
315 - USER32: Fix: UpdateWindow
316 New: RedrawWindow (preliminary), InvalidateR*
317
318 99-09-16: Patrick Haller <phaller@gmx.net>
319 - USER32: Fix: DIB_FixColorsToLoadflags - incr was not initialized
320 Fix: WINMENU::GetSystemMenu() was broken.
321
322 99-09-15: Sander van Leeuwen <sandervl@xs4all.nl>
323 - KERNEL32: Moved old kernel32 code to kernel32\old
324 Rewritten win32 exe/dll classes.
325 There are now classes for the following exes/dlls:
326 Pe2lx images, win32 images loaded by the pe loader and
327 LX images (win32 apps compiled in OS/2 and system dlls)
328 Bugfixes for unicode resource apis.
329 Not completely tested yet, but works for most apps.
330 NOTE: Resource handling for pe2lx & win32 apps compiled in OS/2
331 will be added in the near future. For now it's compatible
332 with the old pe2lx.
333 NOTE: New kernel32 doesn't work with old user32
334 NOTE: Win32Resource::lockResource not complete yet, but that part
335 will be removed after the pe2lx rewrite.
336 - USER32: Moved new user32 into user32 dir, old one to user32\old
337 - ALL: Changed initterm.cpp to create LX dll object during initialization.
338 IMPORTANT NOTE: Version increased from 3 to 4. Complete recompilation
339 of everything is required!
340
341 99-09-14: Patrick Haller <phaller@gmx.net>
342 - AVIFIL32: ported AVIFIL32 from WINE
343 - DPLAY: ported DPLAY from WINE
344 Note: DPLAYX is required and NOT ported yet.
345 Furthermore, DPLAY has still stubs.
346 - DPLAYX: ported DPLAY from WINE (incomplete)
347 Note: still problem with COM-inheritance-macro XCAST()
348 - WNASPI32: ported WNASPI32 from WINE
349 Note: someone should adapt it to OS/2's R3 ASPI router
350
351 99-09-14: Sander van Leeuwen <sandervl@xs4all.nl>
352 - USER32\NEW: Implemented Enum(Thread/Child)Windows based on Edgar
353 Buerkle's code with modifications for new user32 and
354 added some enhancements.
355
356 99-09-13: Jens Wiessner <wiessnej@rfi.de>
357 - NTDLL: Added CRT-functions.
358
359 99-09-13: Daniela Engert <dani@ngrt.de>
360 - USER32\NEW: DC/related code: ReleaseDC, GetWindowDC, DC destruction,..
361
362 99-09-13: Patrick Haller <phaller@gmx.net>
363 - SHELL32\NEW: updated to current wine level
364
365 99-09-13: David Raison <djr@lemur.co.uk>
366 - KERNEL32: Fixed MultiByteToWideChar. Return size of string including
367 0 terminator.
368
369 99-09-13: Jens Wiessner <wiessnej@rfi.de>
370 - CRTDLL: Added functions.
371
372 99-09-08: David Raison <djr@lemur.co.uk>
373 - OLEAUT32: Updated TypeLib code to find typelibs in EXE/DLL etc
374 NB Still need to fix typelib translation.
375
376 99-09-12: Daniela Engert <dani@ngrt.de>
377 - USER32\NEW: DC/related code: GetDCEx implemented. Slightly enhanced
378 over Open32.
379
380 99-09-12: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
381 - WIN32K: An untested version is checked in. The new skeleton is
382 partially tested. PE2LX is not updated and will probably not be updated
383 before pe2lx is rewritten.
384
385 99-09-09: Daniela Engert <dani@ngrt.de>
386 - USER32\NEW: begin new DC/related code. BeginPaint/EndPaint done.
387
388 99-09-09: Patrick Haller <phaller@gmx.net>
389 - SHELL32\NEW: shell32 done, it compiles + links, no testing yet
390 - USER32: added stubs for GetMenuInfo + SetMenuInfo
391 - USER32\NEW: added stubs for GetMenuInfo + SetMenuInfo
392
393 99-09-08: David Raison djr@lemur.co.uk
394 - Src\OleAut32 Added stubs for undefined exports in OLEAut32
395
396 99-09-08: Yuri Dario <mc6530@mclink.it>
397 - INCLUDE\WIN: Changes to wingdi.h (more WINELIB_NAME defs) & winuser.h (mssing definitions)
398 Missing ';' in custcntl.h at line 106
399
400 99-09-08: David Raison djr@lemur.co.uk
401 - INCLUDE\WIN: Added DECIMAL definition to windef.h
402
403 99-09-08: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
404 - KERNEL32, USER32, USER32\NEW, GDI32, ADVAPI32: <dllname>exp.def is
405 now generated by a util called ImpDef. (source in tools\impdef).
406 - INC: pdwin32.tools is updated with a IMPDEF macro. This requires
407 the macro PDWIN32_TOOLS too point to the tools\bin directory.
408 - TOOLS: New directory tree for tools developed to aid us create odin32.
409 Create a subdirectory for each tool.
410 Currently database, impdef and omfdumper is placed here.
411 - TOOLS\IMPDEF: generates the <dllname>exp.def files.
412 - TOOLS\OMFDUMPER: source for the omfdumper use to create pmwinx.def.
413 Base source for a library converted used in win32k.
414 - TOOLS\DATABASE: source for the odin32 API database and it's tools.
415 See the Odin32 API Database Design Document for more info.
416 Document will soon be placed in the 'Vault' of the win32-os2 group.
417 - TOOLS\DATABASE\MYSQL: mysql headers and libraries.
418 - TOOLS\DATABASE\GD: Gifdraw 1.2 - used to draw graphs.
419
420 99-09-08: Patrick Haller <phaller@gmx.net>
421 - OLE32: CLSIDFromStringA is needed in other modules, too. (SHELL32)
422
423 99-09-08: Sander van Leeuwen <sandervl@xs4all.nl>
424 - Removed /DNONAMELESSUNION from some makefiles (now defined in odin.h)
425 - Minor changes to odin.h (nameless union allowed in VAC 3.6.5) & windowsx.h
426 - USER32\NEW: Use fixed user32exp.def. Doesn't work for GetOS2Callback__15Win32WindowProcFv
427 (causes link failure for comdlg32)
428 - TOOLS\WRC: Ported Wine wrc. Needs EMX+GCC
429
430 99-09-07: Jens Wiessner <wiessnej@rfi.de>
431 - CRTDLL: Created dll (Wine port)
432
433 99-09-07: Patrick Haller <phaller@gmx.net>
434 - OLE32: WINE_StringFromCLSID is needed in other modules, too. (SHELL32)
435 - SHELL32\NEW: improvement of shell32
436 - KERNEL32: ToolHelp functions stubbed: Process32First, etc.
437
438 99-09-05: Sander van Leeuwen <sandervl@xs4all.nl>
439 - USER32\NEW: Dialog updates (not yet done)
440
441 99-09-04: Daniela Engert <dani@ngrt.de>
442 - USER32\NEW: beginning with 'DAXifying' of our windows
443
444 99-09-04: Sander van Leeuwen <sandervl@xs4all.nl>
445 - KERNEL32: Fixed icon- & cursorgroup conversion (Solitaire icon now correct again)
446 - USER32\NEW: Started with Wine dialog code port. Dialog creation done,
447 but not tested.
448
449 99-09-04: Jens Wiessner <wiessnej@rfi.de>
450 - MSVFW32: Created stub (partly) dll (Based on Wine 990815)
451 - PSAPI: Created stub dll (Based on Wine 990815)
452
453 99-09-03: Sander van Leeuwen <sandervl@xs4all.nl>
454 - USER32\NEW: MDI child/client improvement (not all wine code has
455 been ported though)
456
457 99-09-01: Patrick Haller <phaller@gmx.net>
458 - *: Cleanup of include files, some ICOM issues in particular,
459 also fixes LONGLONG problem (now names LONGLONG_W)
460 - SHELL32\NEW: introduction of a straight port of WINE's SHELL32 implementation
461 18 of 22 files are ported already
462
463 99-09-01: Patrick Haller <phaller@gmx.net>
464 - *: Cleanup of include files. Warning: OS/2's BOOL is ULONG, WIN32 is INT.
465 Causes C++ compilers to complain here and there. Plus many WINE prototypes
466 are just plain wrong.
467 This change should help porting shell32/new.
468
469
470 99-09-01: Sander van Leeuwen <sandervl@xs4all.nl>
471 - USER32\NEW: Fixed GetWindowDC (Freecell 'Cards Left' string drawn
472 at the right place)
473
474 99-09-01: Jens Wiessner <wiessnej@rfi.de>
475 - RASAPI32: Created stub dll
476 - MSACM32: Created (partly) stub dll
477
478 99-08-31: Patrick Haller <phaller@gmx.net>
479 - WINMM: revision of timer services (C&C RA)
480 - KERNEL32: temporary fix for DuplicateHandle for non-HandleManager handles
481 little improvement in console properties
482 incorrect anchor class for mutexes, events and semaphores
483 fixed return codes for HMCreateFileMapping, HMOpenFileMapping
484 Fix: FILE_MAP_ALL_ACCESS access flags for memory mapped files
485
486 99-08-31: Sander van Leeuwen <sandervl@xs4all.nl>
487 - USER32\NEW: Finished MDI class, but it's not working yet.
488 - USER32\NEW: Fixed menu apis
489 - KERNEL32\NEW: Changed makefile to generate response file (linker
490 cmd line too long)
491 Created resource class for menus (Win32MenuRes)
492 - INC: Changed debug makefiles to include /dbgpack linker option
493 (compresses debug info)
494
495 99-08-31: Rene Pronk <R.Pronk@twi.tudelft.nl>
496 - USER32,USER32\NEW: Implemented ChildWindowFromPointEx
497
498 99-08-30: Jens Wiessner <wiessnej@rfi.de>
499 - OLEDLG: Created stub dll
500 - INC\WIN: Update for ras.h
501
502 99-08-30: Sander van Leeuwen <sandervl@xs4all.nl>
503 - USER32\NEW: Redesign. Create base class for all window types
504 Delete Open32 class atoms before recreating them.
505 Added skeleton class for MDI client window.
506
507 99-08-29: Sander van Leeuwen <sandervl@xs4all.nl>
508 - USER32\NEW: Changed behaviour of mouse messages (send NC messages
509 when in non-client area + send WM_SETCURSOR msgs)
510 Don't send WM_MOUSEMOVE when mouse is captured.
511 Changed CreateMDIWindowA/W (don't call Open32 api anymore,
512 but post WM_MDICREATE msg)
513
514 - KERNEL32 Interlock apis ported from Wine (with help of Patrick Haller)
515 - INC: Removed Masm compatible flag for ALP and enabled debugging
516 info in debug build
517
518 99-08-29: Jens Wiessner <wiessnej@rfi.de>
519 - OLECLI32: Created stub dll
520 - IMM32: Created stub dll
521 - IMAGEHLP: Created (partly) stub dll
522
523 99-08-28: Sander van Leeuwen <sandervl@xs4all.nl>
524 - USER32\NEW: Use shared memory for window & class objects
525 Implemented FindWindow(Ex). Not yet tested
526 Fixed window names.
527 Created shared heap using VAC's _ucreate.
528 Separate window handle creation (in shared memory array)
529 PostMessage fixes (didn't work between two processes)
530 - KERNEL32: Fixed exception handling for kill signals & termination
531 Changed VMutex constructor (also allows creation of
532 shared mutex semaphores)
533 NOTE: This requires a complete recompile!!
534
535 99-08-28: Daniela Engert <dani@ngrt.de>
536 - USER32\NEW: client windows get repositioned now when
537 the parent resizes
538
539 99-08-28: Achim Hasenmueller <achimha@innotek.de>
540 - COMCTL32: Merged with latest WINE updates (990815)
541
542 99-08-28: Yuri Dario <mc6530@mclink.it>
543 - INCLUDE\WIN: Added macros to windowsx.h
544
545 99-08-27: Daniela Engert <dani@ngrt.de>
546 - USER32\NEW: window creation, window relationship, window sizing and
547 positioning enhanced.
548 - USER32\NEW: window and client rectangles are in sync with the WINE
549 structures now.
550
551 99-08-27: Sander van Leeuwen <sandervl@xs4all.nl>
552 - KERNEL32: Rewrote memory mapped files for multiple views
553 Increased default nr of pages loaded so loading
554 large apps doesn't take forever to start in IPMD.
555 - KERNEL32: Process dll exports before imports in order to support
556 circular dll dependencies.
557 - KERNEL32: Replaced fopen/fclose calls in windll.cpp; they mess up FS.
558 Init full path of image during Init method.
559
560 99-08-27: Patrick Haller <phaller@gmx.net>
561 - KERNEL32: removed logging page faults if mmapped i/o
562
563 99-08-26: Sander van Leeuwen <sandervl@xs4all.nl>
564 - KERNEL32: Cleaned up. (removed os2native.cpp & os2util.cpp and
565 replaced them with oslibdos.* & oslibmisc.*; put
566 Virtual* win32 apis in virtual.cpp)
567 - KERNEL32: Added workaround for (what seems to be) an OS/2 bug.
568 Fixes crashes when reading from the memory mapped file.
569 (see comments in kernel32\mmap.cpp)
570 Bugfixes for VirtualProtect & VirtualQuery
571
572 99-08-25: Jens Wiessner <wiessnej@rfi.de>
573 - OLESVR32: Created stub dll
574
575 99-08-25: Sander van Leeuwen <sandervl@xs4all.nl>
576 - KERNEL32: Use memory mapped files for PE loader
577 Readonly memory mapped files work. Read/Write has not
578 been tested yet. Shared mmaps don't work at this time.
579 - KERNEL32: Set exception handler chain to -1 (not 0) in KillWin32Process
580 -> fixes large nr of exceptions
581 - KERNEL32: Several changes for memory mapped files.
582 Put back handlemanager changes. (i.e. MapViewOfFile)
583 - USER32\NEW: Deleted win32type.h
584 - ADVAPI32: Fixed some incorrect definitions of security apis
585 - INCLUDE\WIN: Changed WINE_NAME_AW definition (now you can use
586 apis without the 'A' or 'W' suffix)
587 - INCLUDE: Added makefile for VAC 3.6.5
588 To compile use i.e.: nmake DEBUG=1 CCENV=VAC36
589 - KERNEL32: Changed VIRTUAL_MapFileA/W
590 Changed OS2ImageInit from public to protected
591 - KERNEL32: Added DuplicateHandle to Handle Manager (wasn't working before)
592 NOTE: Only works for file handles at this time!
593 The rest still needs to be implemented.
594 - USER32\NEW: Changed loadres.cpp call to VIRTUAL_MapFileA
595
596 99-08-24: Patrick Haller <phaller@gmx.net>
597 - USER32: added extended Open32 WinX control styles (OS2CTLWX)
598 - KERNEL32: HandleManager support for memory mapped files
599 Added FindFirstFileW, FindNextFileW
600 Bugfix in ExitProcess / iConsoleWaitClose
601 Bugfix in OS2Heap::OS2Heap (Heap 0 always valid for NT programs?)
602
603 99-08-24: Sander van Leeuwen <sandervl@xs4all.nl>
604 - USER32\NEW: One mutex per type of generic object + mutex protection
605 of linked list access in win32 classes
606 - KERNEL32: Implemented VirtualQuery (not yet tested)
607 VirtualQueryEx calls VirtualQuery, VirtualProtectEx calls
608 VirtualProtect
609 NOTE: VirtualQueryEx & VirtualProtectEx can't handle addresses of other
610 processes
611 - KERNEL32: Added memory mapped file class (not hooked up to apis or
612 exception handler yet; just committing my preliminary code)
613
614 99-08-23: Sander van Leeuwen <sandervl@xs4all.nl>
615 - KERNEL32: Dll load order bugfix (PE loader)
616 - USER32\NEW: Added two dummy exports so comdlg32 will load
617 NOTE: This is a temporary hack and needs to be changed.
618 - USER32\NEW: Fix for OSLibWinCreateIcon (supports single icons now)
619 - KERNEL32: Logging change, now creates a unique logfile for each
620 process. (multiple win32 apps active -> multiple logfiles)
621
622 99-08-23: Patrick Haller <phaller@gmx.net>
623 - USER32/NEW: partial (not compiling yet) port of DIALOG.C
624 - USER32: fix: Win32Proc constructor crash (GetClassInfoA(of a Systemclass))
625
626
627 99-08-22: Sander van Leeuwen <sandervl@xs4all.nl>
628 - OLE32: Changes for updated WINE headers
629 - OLEAUT32: Created (Wine port: Based on 990815 code)
630 - KERNEL32: Export HEAP_* string functions in lib
631 - KERNEL32: Fixed some PE resource dll load bugs
632 - KERNEL32: Moved CloseLogFile call to after DestroyTIB (fixes crashes
633 as WriteLog was still called in DestroyTIB & WriteOutProfiles)
634 - KERNEL32: Added exception handling code for each thread, entrypoint &
635 TLS callbach handler.
636 OS2ExceptionHandler (in exceptions.cpp) is registered as the
637 main exception handler.
638 NOTE: Still needs to call original win32 exception handler
639 from OS2ExceptionHandler.
640 - USER32/NEW: Changed WM_ERASEBKGND handling. Fixes FreeCell background.
641 (but might not be completely correct)
642 - INCLUDE\WIN: Added custcntl.h & fixed GetObject definition
643 - INCLUDE\WIN, WIN\WINE: Added several files, updated OLE headers
644 - NTDLL: Some changes to make it compile again
645
646 99-08-21: Sander van Leeuwen <sandervl@xs4all.nl>
647 - USER32\NEW: Fixed window class bug. Freecell menu now properly
648 loaded.
649 - USER32\NEW: Changed LoadBitmapA/W to load bitmaps internally
650 (also ported some Wine code for that purpose)
651 Not correct yet: some of Solitaire's bitmaps look bad
652 - KERNEL32: Fixed name id lookup bug for PE loader resources
653 - KERNEL32: AllocFixedMemory bugfix + added Aurora flag to DosAllocMem
654 - KERNEL32: Close logfile in kernel32 exit list -> last log messages
655 before crash now properly saved
656 - PELDR: Corrected makefile
657
658 99-08-21: Yuri Dario <mc6530@mclink.it>
659 - Makefiles: Link with predefined VAC lib (RTLLIB(_O))
660 Needed for VAC 3.6.5
661
662 99-08-20: Sander van Leeuwen <sandervl@xs4all.nl>
663 - KERNEL32: PE resource loading fixes
664 - USER32/NEW: Changes to Load* resource apis
665 - USER32/NEW: Put back LoadBitmap for now
666 Rewrote LoadIconA/W & LoadCursorA/W + added
667 extra code to oslib.
668
669 99-08-20: Patrick Haller <phaller@gmx.net>
670 - ODINWRAP: fixed invalid macros
671
672 99-08-19: Patrick Haller <phaller@gmx.net>
673 - ODINWRAP: fixed invalid recursion in ODINFUNCTION0-Debug
674 - WINMM: odinwrap macros
675 - TAPI32: odinwrap macros
676 - MPR: odinwrap macros
677 - COMDLG32: odinwrap macros
678 - WNETAP32: odinwrap macros
679 - WINSPOOL: odinwrap macros
680
681 99-08-19: Sander van Leeuwen <sandervl@xs4all.nl>
682 - KERNEL32: PE loader resource fixes + ConvertNameId bugfix
683 Added pe2lx conversion code for menus, accelerators,
684 bitmaps, icons, cursors, icon & cursor groups.
685 Put back _CreateWin32Exe export in kernel32exp.def
686 - KERNEL32: Used Odin wrappers for profile apis (mess up FS)
687 - USER32 & USER32\NEW: Cleaned up icon code
688
689 99-08-18: Patrick Haller <phaller@gmx.net>
690 - NTDLL: tons of new stubs and crt functions
691 - WNETAP32: tons of new stubs
692
693 99-08-18: Sander van Leeuwen <sandervl@xs4all.nl>
694 - Put back version check in most dlls (except odincrt.dll & peldr.dll
695 we don't want a kernel32 dependency there)
696 - PELDR/KERNEL32: Use reserved memory by peldr.dll to store win32 exe
697 sections. (now loads exes without fixups & low base address)
698 Added TLS support.
699 - KERNEL32: Lots of changes for the ring 3 PE loader (not completed)
700 Store PE header at start of module in memory, module handle
701 set to image base of module.
702
703 99-08-18: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
704 - KERNEL32: Profile bugfix (line 506) && removed redundant '\r'
705 (except on line 199)
706
707 99-08-17: Sander van Leeuwen <sandervl@xs4all.nl>
708 - KERNEL32/LZ32: Fixed compilation problems introduced by changes below
709 - ODINCRT: Rewrote __threadid Clib function to get rid of crashes
710 (restores OS/2 FS selector before accessing PIB ptr and
711 puts back original FS selector afterwards)
712 NOTE: No longer necessary to use ODIN_FS_BEGIN/ODIN_FS_END macros
713 - DDRAW: Removed ODIN_FS_BEGIN/ODIN_FS_END calls
714 Fixed bugs in divewrap.h. Incorrect wrappers called themselves
715 instead of the original Dive apis.
716
717 99-08-17: Patrick Haller <phaller@gmx.net>
718 - LZ32: can't export LZCopy as ID0, changed to alphanumeric export
719
720 99-08-16: Sander van Leeuwen <sandervl@xs4all.nl>
721 - PE loader: Started with rewrite
722 - ODINCRT: Changed compile & link options
723 - ODINCRT: Don't export ctordtorInit/Term. These functions must exists
724 locally for each dll/exe. Fixes crashes in pe loader and
725 corrupt converted exes generated by pe2lx
726 - ALL: Makefile changes & initterm.cpp no longer calls c/c++ library
727 init & termination functions (should only be done in odincrt.dll)
728
729 99-08-16: Patrick Haller <phaller@gmx.net>
730 - SHELL32: integrated Christoph Bratschis SHELL32 stubs
731 - WSOCK32: odinwrap macros
732
733 99-08-16: Christoph Bratschi <cbratschi@datacomm.ch>
734 - USER32: uitools.cpp update
735
736 99-08-15: Christoph Bratschi <cbratschi@datacomm.ch>
737 - USER32\NEW: controls: wine-990731 update
738
739 99-08-14: Christoph Bratschi <cbratschi@datacomm.ch>
740 - COMCTL32: wine-990731 update
741
742 99-08-14: Sander van Leeuwen <sandervl@xs4all.nl>
743 - INCLUDE\win\windows.h: Include odin.h if __WIN32OS2__ is defined
744
745 99-08-13: Sander van Leeuwen <sandervl@xs4all.nl>
746 - KERNEL32: Export heap functions by ordinal
747 - src\makefile: compile lz32 before version (dependency)
748
749 99-08-12: Patrick Haller <phaller@gmx.net>
750 - VERSION: enhanced plus odinwrap macros
751
752 99-08-11: Patrick Haller <phaller@gmx.net>
753 - ODINCRT: ordinal exports
754 - ADVAPI32:odinwrap macros (partially)
755 - LZ32: odinwrap macros
756
757 99-08-10: Sander van Leeuwen <sandervl@xs4all.nl>
758 - USER32/NEW: Fixed makefile (link with odincrt)
759
760 99-08-10: Patrick Haller <phaller@gmx.net>
761 - LZ32: added preliminary support for independend LZ32 library
762
763 99-08-09: Patrick Haller <phaller@gmx.net>, Achim Hasenmueller <achimha@innotek.de>, Markus Montkowski
764 - ODINCRT: providing a extensible wrapping layer for VAC++ runtime functions
765 change is non-intrusive for existing source.
766
767 99-08-06: Patrick Haller <phaller@gmx.net>
768 - USER32: added stubs so NT4's WINFILE can load
769 - SHELL32: added stubs so NT4's WINFILE can load
770 - NTDLL: added stubs so NT4's WINFILE can load
771
772 99-08-05: Patrick Haller <phaller@gmx.net>
773 - KERNEL32: interactive control over UnhandledExceptionFilter
774 - KERNEL32: FormatMessageAW fixed. Do not mix ODIN's heap functions with VAC heap functions
775 - KERNEL32: added WINE-style string functions in Heapstring.cpp
776 - SHELL3232: RestartDialog @59 stub added. IE2 can load now with NT4's URL.DLL.
777
778 99-08-05: Sander van Leeuwen <sandervl@xs4all.nl>
779 - KERNEL32: Bitmap conversion bugfix; always recalculate bitmap size
780 (bitmap in donut.exe (ddraw sample) contains wrong size)
781
782 99-08-04: Patrick Haller <phaller@gmx.net>
783 - KERNEL32: fix for filename handling in kernel32/profile
784 - KERNEL32: fix for PROFILE_CopyEntry in kernel32/profile
785
786 99-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
787 - PE2LX: Bugfix for icon conversion (heap corruption for ra95.exe; as
788 reported by Patrick Haller)
789
790 99-08-04: Patrick Haller <phaller@gmx.net>
791 - KERNEL32: Heap modification
792 - KERNEL32: Windows 3 style profile support ported from WINE (removes Open32)
793
794 99-08-03: Rene Pronk <R.Pronk@twi.tudelft.nl>
795 - USER32: Ported DrawTextExA/W & DrawStateA/W
796
797 99-07-27: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
798 - KERNEL32: Implemented GetComputerNameA/W
799
800 99-07-25: Sander van Leeuwen <sandervl@xs4all.nl>
801 - USER32/NEW: Lots of changes; Solitaire displays cards correctly
802 Status bar correctly drawn
803 Mouse msg translation still wrong.
804 Paint not correct.
805
806 99-07-25: Sander van Leeuwen <sandervl@xs4all.nl>
807 - KERNEL32: GetLocateInfoA bugfix
808 - USER32/NEW: Lots of changes; now Solitaire starts, but draws cards incorrectly
809
810 99-07-23: Yuri Dario <mc6530@mclink.it>
811 - misc: Changes for compilation with VAC 3.6.5
812
813 99-07-23: Edgar Buerkle <100566.557@compuserve.com>
814 - VERSION: VerQueryValueA/W Wine implementation ported
815
816 99-07-22: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
817 - KERNEL32: Complete implementation of GetLocaleInfoA/W
818
819 99-07-22: Edgar Buerkle <100566.557@compuserve.com>
820 - KERNEL32: Fix for OS2GetResource (os2util.cpp)
821 - PE2LX: Use unique resource id for version resource.
822 - USER32: MapOEMToRealKey fix
823
824 99-07-22: Sander van Leeuwen <sandervl@xs4all.nl>
825 - DDRAW: Now compiles
826 - COMCTL32: Create library with correct api names
827
828 99-07-21: Edgar Buerkle <100566.557@compuserve.com>
829 - KERNEL32: Fix for LoadResource; should return pointer to resource data
830 LockResource just returns the pointer returned by LoadResource
831
832 99-07-20: Sander van Leeuwen <sandervl@xs4all.nl>
833 - USER32/NEW: Added support for window icons and accelerators.
834 Accelerators don't work yet.
835 - PE2LX: Save icons in different format (BITMAPINFOHEADER2)
836
837 99-07-19: Sander van Leeuwen <sandervl@xs4all.nl>
838 - KERNEL32: Added method for retrieving converted OS/2 resource
839 (which will be changed later on)
840 - USER32/NEW: CreateWindowEx now works and menus are displayed
841
842 99-07-17: Sander van Leeuwen <sandervl@xs4all.nl>
843 - KERNEL32: Exports for getting TEB & THDB added
844
845 99-07-15: Sander van Leeuwen <sandervl@xs4all.nl>
846 - USER32/NEW: Unicode & window handle translation bugfixes
847
848 99-07-14: Christoph Bratschi <cbratschi@datacomm.ch>
849 - USER32/NEW: several bugs fixed, compiles now
850 CreateWindow doesn't work yet
851
852 99-07-13: Sander van Leeuwen <sandervl@xs4all.nl>
853 - USER32/NEW: *VERY* preliminary/alpha code for Open32 replacement in user32
854 Compiles, but not tested at all.
855
856 99-07-12: Patrick Haller <phaller@gmx.net>
857 - KERNEL32: various console fixes
858
859 99-07-10: Edgar Buerkle <100566.557@compuserve.com>
860 - USER32: Fixes for CreateWindowExW and several unicode menu apis
861
862 99-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
863 - KERNEL32/PE2LX: Added support for TLS sections
864 - KERNEL32: Added thread attach/detach messages for dlls
865 Fixed some bugs, cleaned up code
866 NOTE: THIS CHANGE BREAKS ALL PREVIOUSLY CONVERTED APPLICATIONS
867 RECOMPILE ALL DLLS AND CONVERT EVERYTHING AGAIN!!!!!!!!!
868 THIS CHANGE ALSO BREAKS WIN32K!
869
870 99-07-06: Patrick Haller <phaller@gmx.net>
871 - KERNEL32: major enhancement of handlemanager
872
873 99-07-06: Edgar Buerkle <100566.557@compuserve.com>
874 - PE2LX: Finished support for codepages
875
876 99-07-05: Patrick Haller <phaller@gmx.net>
877 - SHELL32: SheSetCurDrive stub, ...
878
879 99-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
880 - LIB\libconv.def: Added name with '_' appended. (or else Watcom won't
881 link pe2lx\misc.cpp properly)
882
883 99-07-05: Edgar Buerkle <100566.557@compuserve.com>
884 - PE2LX: Preliminary support for codepages
885
886 99-07-05: Patrick Haller <phaller@gmx.net>
887 - KERNEL32: HandleManager fixes as suggested by Edgar Buerkle
888
889 99-07-04: Christoph Bratschi <cbratschi@datacomm.ch>
890 - PE2LX/USER32: Dialog default font set to WarpSans + fixes
891
892 99-07-02: Christoph Bratschi <cbratschi@datacomm.ch>
893 - PE2LX/USER32: Dialog bugfix for entryfield strings
894
895 99-06-30: Christoph Bratschi <cbratschi@datacomm.ch>
896 - KERNEL32: Unicode changes (unicode.cpp)
897 lstrcpynA/W (kernel32.cpp
898 - USER32: LoadStringA unicode conversion bugfix
899 - USER32: Changed SystemParameterInfo for default font (now 9.WarpSans)
900
901 99-06-30: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
902 - WINMM: Implemented remaining joystick apis + bugfixes
903
904 99-06-29: Patrick Haller <phaller@gmx.net>
905 - KERNEL32: GetLocaleInfoA bugfix (lang.cpp)
906
907 99-06-29: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
908 - WINMM: Implemented most of the joystick apis
909
910 99-06-28: Christoph Bratschi
911 - USER32: AsciiToUnicodeN bugfix (unicode.cpp)
912
913 99-06-28: Sander van Leeuwen
914 - USER32: Get/SetWindowLongA bugfix for dialog controls
915
916 99-06-27: Sander van Leeuwen
917 - USER32: Message handler updates & lots of bugfixes
918 - USER32: Fix for GetWindowLongA, if Open32 returns 0xffff it really
919 means 0xffffffff -> fixes Winhlp32 buttons.
920 - USER32: Fixed bug when changing window procedures for dialog box
921 controls
922
923 99-06-26: Sander van Leeuwen
924 - USER32: Changes for message spy & several message handler changes
925 - USER32: Restore win32 tib in window msg callback
926 - KERNEL32/include: Restore OS/2 tib on entering Open32 or OS/2 apis
927 - KERNEL32/lang.cpp: Bugfix for GetLocaleInfoA (if buf ptr == null,
928 only return size of memory block required to hold info)
929
930 99-06-25: Achim Hasenmueller
931 - Finally fixed changelog date format to be compliant with
932 the official EU date format :)
933
934 99-06-25: Christoph Bratschi
935 - USER32: GetSysColorPen bugfix (syscolor.cpp)
936
937 99-06-24: Patrick Haller
938 - SHELL32: partial port form WINE
939
940 99-06-24: Edgar Buerkle
941 - KERNEL32: Implemented GetLocaleInfoA/W
942
943 99-06-24: Sander van Leeuwen
944 - include\winos2def.h: Changed OS/2 apis to use wrappers
945 (FS save/restore) and added DosQueryCtryInfo
946
947 99-06-23: Patrick Haller
948 - Fixed date format in changlog .g.
949 - NTDLL: a dozen c runtime functions added
950 - USER32: IsHungAppWindow dummy added
951 - SHELL32: few more APIs added
952 - KERNEL32: HandleManager, Console, fixes
953 - COMDLG32: basic unicode support added, thou broken somehow
954 - source code splitups and beautification ;-)
955
956 99-06-23: Achim Hasenmueller
957 - ported latest WINE fixes and additions for comctl32. Changes
958 involve better undoc. DSA APIs, right colors for the tab control,
959 many improvements for the listview...
960
961 99-06-21: Achim Hasenmueller
962 - ported latest WINE DrawEdge code and moved everything to the
963 new file src/user32/uitools.cpp
964
965 99-06-21: Sander van Leeuwen
966 - include\os2wrap.h, removed calling convention
967
968 99-06-21: Christoph Bratschi
969 - COMCTL32: Progress bar finished (progress.c, USER32 bugs to fix)
970 - COMCTL32: Trackbar finished (trackbar.c)
971
972 99-06-20: Sander van Leeuwen
973 - KERNEL32: Call HMInitialize from initterm, not winexe object creation
974 - KERNEL32: Added comctl to list of system dlls (windll.cpp)
975 - KERNEL32: Fixed dll detach (windll.cpp) for converted win32 dlls
976 - KERNEL32: Module name detection (windll.cpp)
977 - KERNEL32: Activated Win32 TIB code; a selector + memory is allocated
978 for the main thread and every thread created.
979 When it's completed, it should fix several problems due to
980 differences between OS/2's TIB and Win32's TEB.
981 - COMCTL32: Fixed crash on exit (moved unregister of class into exit list handler)
982 - USER32: Changed bugfix (WS_CLIPCHILDREN) for winhlp32 (same as Wine now)
983 - USER32: Fixed bug in wndproc.cpp (release build only)
984 - USER32: Added preliminary support for parent notification
985
986 99-06-19: Sander van Leeuwen
987 - ALL (except dsound/ddraw): Include <os2wrap.h> instead of <os2.h>
988 - KERNEL32: Changes for win32 TEB (not active)
989
990 99-06-07: Sander van Leeuwen
991 - Removed unecessary files
992 - Modified os2win.h to save FS selector before calling Open32 api
993 and restoring it afterwards.
994 - Renamed all .C files (except comctl32) to .CPP and fixed compiler errors
995 - GDI32: Fixed SetDIBitsToDevice bugfix (palette size)
996 - USER32: Fixed RegisterSystemClasses
997
998 99-06-07: Achim Hasenmueller
999 - Added comctl32, mostly untested includes all controls, some undocumented
1000 APIs missing
1001 - Added internal GetSysColorPen() to user32 - handy API used in WINE
1002 Modified syscolor.cpp to support new Win98 colors and create pens
1003
1004 99-06-06: Sander van Leeuwen
1005 - Bugfixes in VirtualAlloc (KERNEL32), GetScrollPos & RegisterSystemClasses (USER32)
1006 as reported on mailinglist by Edgar Buerkle.
1007 Also FindResourceA/W.
1008
1009 99-06-01: David Raison
1010 - OLE32: Changed everything to make it compile with the new headers
1011 - include/win/ole.2 - line 170
1012 - include/wine/win/obj_oleview.h - line 32 & 36
1013
1014 99-05-23: Sander van Leeuwen
1015 - ADVAPI32: Fixed Open32 bugs in RegOpenKeyA (set return key to 0 when failed)
1016 Fixed key definition conflict in convertkey.
1017 - KERNEL32: Fixed exception handler, don't continue after process termination
1018 exception! (fixes annoying exitlist hangs)
1019
1020 99-05-19: Sander van Leeuwen
1021 - KERNEL32: Corrected wrong export for HeapSize (reported by Vit Timchishin)
1022
1023 99-05-15: Sander van Leeuwen
1024 - Fixed a number of bugs introduced during the Wine header update
1025 - KERNEL32: Added high/low fixup support for pe loader
1026
1027 99-05-13: Sander van Leeuwen
1028 - Updated USER32
1029 - Fixed unicode apis in USER32
1030 - Added .def files for ADVAPI32, COMDLG32, GDI32, KERNEL32 & USER32 that
1031 export all apis with the correct names. (_apiname@nrofparameterbytes)
1032
1033 99-05-12: Sander van Leeuwen
1034 - Finished KERNEL32
1035 - Updated WINMM
1036
1037 99-05-10: Vince Vielhaber
1038 - Rewrote WSOCK32 for Wine headers
1039
1040 99-05-08: Sander van Leeuwen
1041 - Updated CAPI32, COMDLG32 & GDI32, MPR, NTDLL, TAPI32, WINSPOOL, WNETAP32
1042 for new headers
1043 - Started with KERNEL32 changes (75% done)
1044 - Made basic changes to OLE32 for new headers, but still tons of errors
1045 - Fixed some unicode apis in GDI32
1046
1047 99-05-04: Sander van Leeuwen
1048 - Stripped os2win.h and put it in include directory
1049 - WINE header files in include\win
1050 (some modified for IBM VAC)
1051 - All Open32 apis have 'O32_' as prefix, Open32 specific declarations
1052 are appended with _O32.
1053
1054 99-05-01: Sander van Leeuwen
1055 - Changed makefile structure:
1056 nmake DEBUG=1 builds debug version
1057 nmake builds release version
1058
1059 99-04-11: Sander van Leeuwen
1060 - Everything except user32 & kernel32: copyrights added to most files
1061 Moved a few header files in \include
1062 - Fixed import problem in peldr (include\winimage.h), SetFullPath must
1063 be a virtual method.
1064
1065 98-10-26: Sander van Leeuwen
1066 - OLE32: CoInitialize takes one parameter, not 0
1067
1068 98-10-11: Sander van Leeuwen
1069 - KERNEL32: except.asm Wrong calling convention for SetExceptionChain
1070 - KERNEL32: exceptions.cpp/wprocess.cpp SetExceptionChain(-1) instead of SetExceptionChain(0)
1071
1072 98-09-28: Sander van Leeuwen
1073 - PE2LX: icon.cpp: palette only for <= 8 bpp
1074 - PE2LX: icon.cpp: check if image size in bmp header is correct before using it
1075
1076 98-09-25: Sander van Leeuwen
1077 - PE2LX: Don't fail if an exe/dll doesn't contain any imports (pe.cpp:ProcessImports)
1078
1079********************************************************************************
1080***** Release 0.03/4
1081********************************************************************************
1082 98-09-15: KSO
1083 - WIN32K: pe2lx\misc.cpp changes
1084
1085 98-09-13: Sander van Leeuwen
1086 - KERNEL32: windll.cpp: fixed bug with szModule not being initialized
1087 - PE2LX: pe.cpp: Only read first 1 MB for huge files. (as they are most
1088 likely InstallShield archives; exe appended with
1089 installation data)
1090
1091 98-09-12: Sander van Leeuwen
1092 - WSOCK32: Changed fd_set to Wfd_set or else it won't compile over here
1093 - KERNEL32: Winimage.cpp, extra checks added
1094 - KERNEL32: OS2GetModuleFileName bugfix
1095 - INCLUDE/MISC.H: Error printf that prints to stdout (more reliable than
1096 a logfile)
1097 - GDI32: GetDeviceCaps -> NT returns -1 when using 16 bits colors, NOT 65536!
1098 - GDI32: CreateDIBSection -> StarCraft uses bitmap with negative height ->
1099 flip image when blitting
1100 - GDI32: DIBSection ctor: bug in BITMAPINFO2 malloc
1101 - GDI32: BitBlt: (dibsection) HDC == HPS (thank you, IBM!)
1102
1103 98-09-02: Sander van Leeuwen
1104 - KERNEL32/USER32: Split up code
1105 - USER32 (/new): Started with new class & window managment code
1106 (not compiled nor tested, so don't change it)
1107
1108 98-09-01: Patrick Haller
1109 - WSOCK32: Circular linker dependency removed
1110
1111 98-08-31: kso
1112 - KERNEL32: changed lfile.c to use OS2CreateFile,OS2CloseHandle,.... as
1113 NT does. Notepad (W95) is now working better.
1114 - KERNEL32: fixed a open32 bug (or win32 feature) - WriteFile with
1115 nrbytes = 0 is equal to a SetEndOfFile(..);
1116
1117 98-08-17: Sander van Leeuwen
1118 - KERNEL32: Changed LoadLibraryA(W/ExA/ExW) to try to load the dll
1119 directly first and if that fails, load it manually.
1120
1121 98-08-15: Sander van Leeuwen
1122 - DDRAW: LOTS of changes,additions and fixes
1123 (ddex1-ddex5 DirectX SDK samples work(ed) + Quake 2 in
1124 DirectDraw mode)
1125 - DSOUND: Skeleton code extended
1126
1127 98-08-13: Sander van Leeuwen
1128 - PE2LX: Replaced stack page removal code; (adjusted GetNrPages instead)
1129
1130 98-08-13: KSO:
1131 - PE2LX: Borland bugfixes
1132
1133 98-08-08: Sander van Leeuwen
1134 - pe2lx (pe.cpp), call SetNrOfExports(0) for dlls without exports
1135 to set the module name in the resident name table
1136 (otherwise converted dll will not load)
1137 - Version resource apis work now
1138 - LocalReAlloc bugfix, notepad assumes it returns the same
1139 address when the new size is smaller than the old one.
1140
1141 98-08-03 KSO:
1142 - pe.cpp: line 600 - added OS2Exe to the parameterlist
1143 - bitmap.cpp: replace file - much.
1144 - bitmap.h: replace file - typo (BitMap to Bitmap)
1145 - icon.h: replace file - #define BI_*
1146
1147 98-07-23: Knut Osmundsen
1148 - PE2LX: Borland exe changes (import stuff)
1149
1150 98-07-18: Sander van Leeuwen
1151 - KERNEL32/PE2LX: Changed version checks; version nr is put into the
1152 converted exe/dll as a parameter to one of the kernel32
1153 entry points
1154 - USER32: Changed class managment code
1155 - USER32: Removed all SYNCPAINT stuff as it breaks many apps
1156 - USER32: Removed in CreateWindowExA that checks for values of x, y, nHeight & nWidth
1157 (this broke generic.exe, notepad.exe and probably many others)
1158 - USER32: Finished GetMenuStringW (MSPaint), not working right though
1159 it should return 'Recent File', but returns 'Decent File'
1160 Well, whatever.
1161 - VERSION/KERNEL32/PE2LX: Version resource API implemention started
1162 - PE2LX: Increased some fixup limits to convert dynhgi35.dll
1163 - KERNEL32: AsciiToUnicode fixed (only terminate with one 0; doing
1164 it twice corrupts the heap as our stuff allocates exactly
1165 enough for string + 0 terminator)
1166
1167 98-07-14: Sander van Leeuwen
1168 - KERNEL32: Changed OS2GetProcAddress to call the ordinal or name getApi
1169 method
1170
1171 98-07-13: Patrick Haller
1172 - USER32: Unicode fix for wvsprintfW "%s" -> "%ls"
1173 - USER32: fix in Win32WindowProc destructor when "window" becomes NULL
1174 - ADVAPI32: RegConnectRegistry for connection to local machine
1175
1176 98-07-13: Patrick Haller
1177 - KERNEL32: Unicode fix that garbled CommandLineToArgv and others
1178
1179 98-07-12: Patrick Haller
1180 - NTDLL: new functions in NTDLL (-> critical sections)
1181 - SHELL32: few new stubs in SHELL32
1182 - GDI32: fix in GDI32\DIBSECT\CreateDIBSection for M$ Backup
1183 - USER32: experimental fix (CS_SYNCPAINT) for WinHlp32 to
1184 display navigation buttons, but crashes SOL.EXE :(
1185
1186 98-07-10: Patrick Haller
1187 - stubs for NETAPI32 100%
1188
1189 98-07-09: Patrick Haller
1190 - stubs for Winspool 100%
1191
1192 98-07-01 Joel Troster
1193 - KERNEL32: update to nameid.cpp
1194
1195 98-06-07 Joel Troster
1196 - WINMM: WaveOpen bugfix
1197
1198 98-06-07 Felix Maschek
1199 - CAPI32: bugfix
1200
1201 98-06-15: Patrick Haller
1202 - GDI32: stubs for all missing functions
1203 - ADVAPI32: stubs for all missing functions
1204 - USER32: implementation of some real functions
1205 some unknown functions stubbed (IDA/2)
1206
1207 98-06-14: KSO
1208 - GDI32: Stubs for Office 97
1209 - PE2LX: Formatted output
1210 - ADVPI32: Stubs for Office 97
1211 - VERSION: Stubs for Office 97
1212
1213 98-06-12: Patrick Haller
1214 - NTDLL: ported over the NTDLL code from WINE, subject to the GNU Copyleft
1215 some applications open this module explicitly
1216 - KERNEL32: few fixes to Unicode handling
1217 - KERNEL32: console window sizing (still buggy) and property fixes
1218 - KERNEL32: stubs for all missing functions
1219 - GDI32: bugfix for DIB allocation (MS Paint)
1220 - WINMM: functions for FOURCC handling
1221 - PE2LX: CURSOR.CPP: hotspot.y is upside down (fixed for Winhlp32)
1222 - PE2LX: DIALOG.CPP: combobox style translation CBS_ fixed
1223 - PE2LX: DIALOG.CPP: style translation for WINES_MULTILINE
1224 causes MLE control to be generated.
1225 Experimental.
1226 - KERNEL32: WINDLL.CPP: fixed endless loop in Win32DLL::StripPath()
1227
1228 98-05-25: Patrick Haller
1229 - KERNEL32: Added few NTDLL stubs, mainly for support of MSACM32/NT
1230 - KERNEL32: Resource fix
1231
1232 98-05-03: Joel Troster
1233 - WINMM: Stubbed most of the remaining mmedia apis
1234
1235 98-04-28: Patrick Haller
1236 - KERNEL32: Console fixes
1237 - KERNEL32: Console properties (partially)
1238 - KERNEL32: Handlemanager fixes
1239 - KERNEL32: OS2iGetModuleName fixes
1240
1241********************************************************************************
1242***** Release 0.02
1243********************************************************************************
1244
1245 98-04-05: Patrick Haller
1246 - KERNEL32: Resource bugfix
1247
1248 98-03-30: Joel Troster
1249 - WINMM: midiStream* stubs added
1250
1251 98-03-30: Sander van Leeuwen
1252 - PE2LX: Set console flag when exe has no resources
1253
1254 98-03-27: Joel Troster
1255 - WINMM: Midi changes/bugfixes, mci* api stubs added
1256 - GDI32: SetObjectOwner stub added
1257
1258 25-03-98: Sander van Leeuwen
1259 - KERNEL32: Several changes in resource code
1260
1261 19-03-98: Felix Maschek
1262 - KERNEL32: Comm stubs added
1263
1264 19-03-98: Sander van Leeuwen
1265 - KERNEL32: Pop up a dialog box when a missing api is called
1266 - KERNEL32: dll bugfix
1267 - KERNEL32: CreateProcessA/W fix
1268 - KERNEL32: GetProcAddr completed for PE loader & PE2LX
1269
1270 19-03-98: Peter Fitzsimmons
1271 - created include\version.h
1272 - changed pe2lx\lx.cpp (call SetVersion())
1273 - changed pe2lx\misc.cpp (code for SetVersion(), setea())
1274 - changed pe2lx\misc.h (add prototypes)
1275 - changed pe2lx\pe.cpp (moved DosClose() up a few lines, so DosSetPathInfo() could write to the file)
1276 - changed pe2lx\makefile \
1277 - changed pe2lx\makefile.wat / Build setver.exe, getver.exe. I didn't copy
1278 these exe's to ..\bin in purpose; they
1279 aren't supposed to go to end users.
1280 - Added one line ("..\server $@") to all makfiles
1281
1282 - added getea() to kernel32\os2util.c
1283 - added a few lines in kernel32/wprocess.cpp/RegisterDll()
1284
1285 - Edit all initterm.c's to remove that rand() crap (that is from a
1286 sample project!). Also added new version check to each. Also #include "misc.h"
1287
1288 - wsock32: edited makefile to remove reference to ..\kernel32\misc.obj and
1289 replace with kernel32.dll.
1290
1291 - src\makefile: build kernel32 before wsock
1292 - src\kernel32\makefile: remove reference to wsock32.lib
1293 - src\kernel32\network.cpp: remove call to wsock32
1294
1295 16-03-98: Joel Troster
1296 - GDI32: Added SetObjectOwner stub
1297
1298 15-03-98: Joel Troster
1299 - WINMM: RTMIDI dependency removed
1300
1301 15-03-98: Sander van Leeuwen
1302 - All dlls, C++ init+termination call added to initterm.c
1303 - KERNEL32: Icon conversion bugfix
1304 - KERNEL32: Removed reroute of exe reading
1305 - KERNEL32: Major rewrite of dll & exe handling including
1306 LoadLibary(Ex)A/W, CreateProcessA/W, GetModuleFileNameA/W,
1307 FreeLibrary & GetCommandLineA/W
1308 Side effect: Crash at Quake 2 exit fixed
1309
1310 - KERNEL32: Additional code for PE loader
1311 - PE: Created OS/2 ring 3 PE loader
1312 syntax: pe win32exe commandline
1313 Reads win32exe & all imported dlls, calls all dll entry points and
1314 finally calls the exe entry point.
1315 TODO: No fixups and low startup address
1316 TODO: Resources
1317 TODO: CreateProcess doesn't work right
1318
1319 13-03-98: Sander van Leeuwen
1320 - KERNEL32: Dll unloading fixed
1321
1322 13-03-98: Peter Fitzsimmons
1323 - KERNEL32: Fixed CompareStringA/W
1324
1325 12-03-98: Joel Troster
1326 - WINMM: Stubbed all the mixer APIs and updated support for MidiMapper
1327
1328 10-03-98: Sander van Leeuwen
1329 - WSOCK32: WSAStartup fix and ioctl addition
1330 (Quake 2 Multiplayer working)
1331 - KERNEL32: Resource lookup bug fixed
1332
1333 10-03-98: Joel Troster
1334 - KERNEL32: SetThreadLocale added
1335
1336 09-03-98: Patrick Haller
1337 - KERNEL32: Fix in GetStdHandle within HandleManager
1338
1339 - KERNEL32: Console APIs completed, input and output is complete,
1340 however not thoroughly tested, SHORT 0.98D is working.
1341 Codepage support, Unicode support missing.
1342 I'm working on cosmetics and properties dialog.
1343
1344 - EXECHECK: tool to check executables for convertibility via pe2lx
1345 and keeping track of our APIs, as well as imported/exported
1346 functions of executables (PE import is currently implemented)
1347
1348 09-03-98: Sander van Leeuwen
1349 - KERNEL32: Put dll & exe apis in wprocess.cpp
1350 - KERNEL32: Reroute file io from own exe to original
1351
1352 08-03-98: Joel Troster
1353 - KERNEL32: Unicode changes (lstrcatW, lstrcmpW, lstrcpyW lstrcpynW)
1354 - WINMM: Unicode midi apis added to .def file
1355
1356 08-03-98: Sander van Leeuwen
1357 - WINMM: Aux* apis implemented (not tested and not 100% correct)
1358 - include: added mmddk.h from win95 ddk
1359
1360 07-03-98: Peter Fitzsimmons
1361 - Added KERNEL32.GetSystemDefaultLangID() -- I copied GetUserDefaultLangID, which
1362 always returns "US ENGLISH".
1363 (NOTE: Already added)
1364 - Added ADVAPI32.ReportEventA(). Stub.
1365 - Added ADVAPI32.OS2SetSecurityDescriptorDacl(). Stub that returns ERROR.
1366 - Added ADVAPI32.* a bunch more stubs.
1367
1368 07-03-98: Sander van Leeuwen
1369 - KERNEL32: Implemented Local* memory apis with new heap
1370 (in win32 you can mix Heap and Local apis)
1371 - KERNEL32: Corrected key mapping bugs for arrow, insert/del/home/end
1372 page up/down keys.
1373 Doesn't work 100% right yet. (strafing in Quake = alt-arrow)
1374
1375 06-03-98: Sander van Leeuwen
1376 - WINMM: Added WaveOutGetNumDevs and corrected the calling
1377 convention for several apis (WIN32API, not WINAPI)
1378 - KERNEL32: Added GetSystemDefaultLangID and moved several
1379 language apis to lang.cpp
1380 - KERNEL32: Added EnumSystemLocalesA/W (US English only)
1381 - PE2LX: command line option change: pe2lx win32file > logfile
1382 Now makes a backup copy of the win32 file and creates
1383 an OS/2 version with the same name
1384
1385 05-03-98: Joel Troster
1386 - KERNEL32: Use OS/2 unicode apis
1387 - USER32: Use OS/2 unicode apis
1388
1389 04-03-98: Sander van Leeuwen
1390 - KERNEL32: Use OS2gethostname (wsock32.dll) instead of gethostname
1391
1392 03-03-98: Knut Osmundsen
1393 - KERNEL32: VirtualAlloc bugfixes & high memory support (SMP)
1394
1395 03-03-98: Patrick Haller
1396 - PECHECK: Initial code for pecheck.exe
1397
1398 03-03-98: Joel Troster
1399 - KERNEL32: Stubs added for Virtual(Un)Lock
1400 - WINMM: Unicode midi apis added, MIDIMAP faked, some bugs fixed
1401
1402 03-03-98: Sander van Leeuwen
1403 - KERNEL32: Fixed logbuffer overflow with strlen WriteLogs
1404 - KERNEL32: Use tcp32dll instead of pmwsock
1405 - PE2LX: Fixed memory corruption in icon.cpp
1406
1407 02-03-98: Sander van Leeuwen
1408 - KERNEL32: kernel32.c -> kernel32.cpp
1409 - KERNEL32: Merged exception logging with my latest code
1410 - include: win32type.h
1411 - WSOCK32: Removed pmwsock.lib from makefile
1412
1413 01-03-98: Patrick Haller
1414 - KERNEL32: Extensions to the exception handler (logging)
1415 - KERNEL32: HandleManager for pseudo-devices (CONIN$,CONOUT$,etc)
1416 - KERNEL32: Hooks for HandleManager
1417 - KERNEL32: Very early console support for stdout is there ...
1418 Console also has context menue.
1419********************************************************************************
1420***** Release 0.01
1421********************************************************************************
1422 28-02-98: Sander van Leeuwen
1423 - DDRAW: Initial work for Direct3D
1424 - KERNEL32/PE2LX, Changes for console applications (flag)
1425 - KERNEL32: Kill process when a fatal exception occurs
1426 (prevents some kind of eternal loop in OS/2; probably due to
1427 invalid exception records or difference in exception handler
1428 calling convention)
1429 - KERNEL32: Added a try/catch statement around the dll exit list
1430 processing in ExitProcess. Seems to cure the trap
1431 at exit.
1432
1433 27-02-98: Patrick haller
1434 - MPR: stubs for all documented MPR functions,
1435 should be complete now
1436
1437 26-02-98: Patrick haller
1438 - USER32: stubs for all documented USER32 functions,
1439 should be complete now
1440 - USER32: Windows95's SHELL32.DLL requires a few undocumented functions
1441
1442 24-02-98: Joel Troster
1443 - WINMM: Midi working
1444
1445 24-02-98: Sander van Leeuwen
1446 - KERNEL32: Exit list changes; terminate all dlls right before
1447 ExitProcess or in kernel32 exitlist in case of a trap
1448 (prevents unkillable processes in most cases)
1449
1450 23-02-98: Joel Troster
1451 - KERNEL32: PMPrintf version of WriteLog added
1452
1453 22-02-98: Sander van Leeuwen
1454 - ALL DLLs: Call C/C++ lib cleanup proc in exit list
1455 - PE2LX: Use exit lists in converted win32 dlls to terminate them
1456 - WINMM: Remove test code in timer emulation (multiplied time by 10)
1457 - KERNEL32: Release winmod objects properly
1458 - KERNEL32: Call dll exit proc in FreeLibrary
1459
1460 21-02-98: Sander van Leeuwen
1461 - KERNEL32: VirtualProtect size change to include all pages
1462 referenced
1463
1464 19-02-98: Sander van Leeuwen
1465 - PE2LX: Change order of dlls in import module name table
1466 - KERNEL32: Don't call the C/C++ lib cleanup procedure at
1467 dll termination
1468
1469 18-02-98: Joel Troster
1470 - WINMM: Midi changes, wave in/out stubs added
1471
1472 16-02-98: Sander van Leeuwen
1473 - KERNEL32: Heap bugfix
1474
1475 16-02-98: Joel Troster
1476 - WINMM: Midi updates
1477
1478 15-02-98: Sander van Leeuwen
1479 - KERNEL32: Changed heap allocation again. (now uses malloc/free)
1480 - KERNEL32: QueryPerformanceFrequency/Counter uses DosTmrQueryTime/
1481 DosTmrQueryFreq now, so the normal xf86sup.sys can
1482 be used.
1483
1484 11-02-98: Sander van Leeuwen
1485 - MPR: Changed/Corrected ordinals
1486
1487Mon 98-02-09 Peter Fitzsimmons
1488 - lx.cpp -- put in check for MAX_SECTIONS (was bombing out in one
1489 of "visio technical"'s dlls.
1490 - lx.cpp increase MAX_SECTIONS (lx.h) from 16 to 32 (where'd the
1491 original value come from?).
1492 - kernel32.c: added stub for FlushInstructionCache()
1493 - kernel32.c: added stub for OS2GetPrivateProfileSectionA()
1494
1495 - advapi32: GetUserNameA() stub. Always says a person named
1496 "USER" is logged on.
1497
1498 - MPR: WNetGetConnection(). NEEDS PROPER ORDINAL IN *.def file.
1499
1500 9-02-1998: Joel Troster
1501 - USER32: Added Set/GetDefaultMenuItem (stub)
1502
1503 7-02-1998: Sander van Leeuwen
1504 - KERNEL32/WINMM: Added VMutex to KERNEL32 (imported by WINMM)
1505 - KERNEL32: New heap implementation (heap.cpp & os2heap.cpp)
1506 - KERNEL32: Replace exception handler for each new thread
1507 - KERNEL32: Set previous exception handler to 0 instead of -1
1508 (fixes endless exception handler calls)
1509 - Added macro dprintf & dassert to include\misc.h (no more need
1510 for #ifdef DEBUG's)
1511
151231-01-1998: Sander van Leeuwen
1513 - USER32: Fixed two bugs in CreateWindowExA/W
1514 - WINMM: Fixed wave playback problem
1515
151618-01-1998: Sander van Leeuwen
1517 - GDI32: Changed GetDIBColor & SetDIBColor
1518 - GDI32: Fixed CreateDIBSection
1519 - Quake 2 working in a window!
1520
152117-01-1998: Sander van Leeuwen
1522 - WINMM: Waveout working, Quake 2 WITH sound now!
1523 - GDI32: Implemented GetDIBColor & SetDIBColor
1524
152511-01-1998: Sander van Leeuwen
1526 - KERNEL32: Exception handler fix
1527 - WINMM: Started with WaveOut implementation
1528
152911-01-1998: Felix Maschek
1530 - TAPI32: Fixes
1531
153210-01-1998: Sander van Leeuwen
1533 - Changes to makefile and wsock32.c to make it compile with VAC
1534 - VirtualAlloc bugfix (reserve)
1535 - Dialog fix (font name)
1536 - WINMM now uses mmsystem.h from win32 SDK
1537
153810-01-1998: Chris McKillop
1539 - New build tree
1540
154110-01-1998: Vince Vielhaber
1542 - Winsock32 changes
1543
154431-12-1997: Sander van Leeuwen
1545 - Remove all 'OS2' strings from imports/exports (dlls/pe2lx)
1546
154728-12-1997: Sander van Leeuwen
1548 - KERNEL32: Code to allow IO in ring 3 added (xf86sup.sys)
1549 Set environment variable WIN32_IOPL2 to enable this
1550
1551 - KERNEL32: Fixed GetStartupInfoA/W (WINE)
1552 - GDI32: Added CreateDIBSection from Wine (not complete)
1553 - Lots of stubs added
1554 - Almost got Quake II running....
1555
155623-12-1997: Felix Maschek
1557 - CAPI2032: Complete implementation of CAPI
1558
155920-12-1997: Felix Maschek
1560 - TAPI32: Stub dll
1561
156220-12-1997: Sander van Leeuwen
1563 - KERNEL32: Bug in winmod.cpp
1564 - KERNEL32: Added code for exception handling (not fool proof)
1565 - KERNEL32: Fixed HeapCreate (now reserves 32 MB instead of 64 kb)
1566 - KERNEL32: Catch FPU exception, mask fpu exceptions, fix stack and continue execution
1567 - PE2LX: Removed stack size & base switch
1568 - WINMM: Added joyGetPos stub
1569
157014-12-1997: Sander van Leeuwen
1571 - KERNEL32: Added QueryPerformanceFrequency, QueryPerformanceCounter
1572 - USER32: Added some stubs
1573 - GDI32: Added some stubs
1574 - WINMM: Added some stubs
1575 - WNETAP32: New (NETAPI32)
1576 - PE2LX: Change module import name NETAPI32 to WNETAP32 (name conflict with OS/2 NETAPI32)
1577 - PE2LX: Cut long dll names to 8 chars
1578 - MPR: Added WNetGetUserA stub
1579
158031-11-1997: Sander van Leeuwen
1581 - KERNEL32: Fixed GetEnvironmentStringsW
1582 - KERNEL32: Added DeviceIOControl (devio.c, map.c, iccio.asm; last two from XFree86 driver src)
1583 - KERNEL32: Changed CreateFile to open an OS/2 driver if required
1584 - Last two changes for win32 Glide dll.
1585
1586 - Fixed window creation (wndproc.cpp), Open32 isn't sending WM_NCCREATE msgs!
1587 - Filter out CBS_OWNERDRAWFIXED & CBS_OWNERDRAWVARIABLE combobox styles
1588 in CreateWindowExA/W (not finished)
1589 - Added FormatMessageA/W from Wine (kernel32)
1590 - USER32:
1591 - Fixed GetSystemParameterInfoA/W, SPI_GETNONCLIENTMETRICS/SPI_SETNONCLIENTMETRICS
1592 (ConvertFontAW/ConvertFontWA macros)
1593 - Progress comclt32 class working
1594 - ADVAPI32, fixed:
1595 - RegEnumKeyW
1596 - RegEnumKeyExW
1597 - RegEnumValueW
1598 - RegQueryInfoKeyW
1599 - RegQueryValueW
1600
1601 - USER32:
1602 - Fixed DrawEdge (borrowed from Wine)
1603 - Added ChangeMenuA/W (borrowed from Wine)
1604 - Fixed some color problems
1605 - Trackbar win32 SDK example working (toolbar comctl32 class)
Note: See TracBrowser for help on using the repository browser.