source: trunk/changelog@ 1544

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

* empty log message *

File size: 91.5 KB
Line 
1 /* $Id: changelog,v 1.395 1999-11-02 19:04:47 sandervl Exp $ */
2
3 99-11-02: Sander van Leeuwen <sandervl@xs4all.nl>
4 - INCLUDE\odinwrap.h:
5 fixed wrong define (_ODINWARP instead of _ODINWRAP)
6 Only check the heap for consistency when DEBUG_ODINHEAP is
7 defined.
8 - USER32: Uncommented EDIT_NOTIFY_PARENT call in EDIT_WM_SetFocus
9 (yesterday's showwindow fix makes sure no WM_SETFOCUS msgs
10 arrive before the dialog received it's WM_INITDIALOG msg)
11 Fixed more FS corruption in dc.cpp.
12 - SHELL32: Added extra exports for comdlg32
13 - COMDLG32: Ported Wine file & find common dialogs (990815)
14 Find & Replace dialogs enabled, Wine code called for
15 file dialogs if the app supplies a dialog template.
16 NOTE: Disabled for now. Comctl32 isn't stable enough
17 for the Win95 style Wine comdlg dialogs.
18 Fixed check for find/replace dialog. Notepad uses 32 byte
19 buffer, so why does the wine code fail for < 80 bytes?
20 Fixed display of find/replace dialog -> if not hooked
21 show dialog!
22 - makefiles: Added debugsmp/nodebuginfosmp/releasesmp options to
23 start two nmake process to build everything on two cpus.
24
25 99-11-01: Sander van Leeuwen <sandervl@xs4all.nl>
26 - USER32: Delete all process windows & classes in exitlist handler
27 Set hwndInsertBehind to HWND_BOTTOM for group boxes
28 (fixes problems when groupbox control is defined after
29 controls inside it in dialog template)
30 Mouse activate fix.
31 Don't activate child windows in ShowWindow.
32 - WINMM: Return failure for waveOutGetDevCapsA/W when there's no
33 audio hardware present.
34
35
36 99-11-01: Daniela Engert <dani@ngrt.de>
37 - USER32: add WS_CLIPSIBLINGS to not-WS_GROUP style STATIC controls
38 (fixes missing text in WELCOME)
39
40 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
41
42 This is a hack!
43
44 Dialog controls which contain/surround other controls *need* to be
45 created with the WS_CLIPSIBLINGS style.
46
47 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
48
49 99-10-31: Christoph Bratschi <cbratschi@datacomm.ch>
50 - KERNEL32: Ported Wine time apis
51
52 99-10-31: Daniela Engert <dani@ngrt.de>
53 - USER32: add WS_CLIPSIBLINGS to BS_GROUPBOX style controls (fixes
54 missing buttons in SOL)
55
56 99-10-31: Sander van Leeuwen <sandervl@xs4all.nl>
57 - USER32: Remove CS_SYNCPAINT class flag -> fixes VPBuddy resize + paint
58 Put back methods that belong in the Win32Dialog class.
59 (MapDialogRect, DIALOG_Init, several x & y unit helpers)
60 -> fixes calc window controls.
61
62 99-10-30: Christoph Bratschi <cbratschi@datacomm.ch>
63 - USER32: added button control text justification
64 GetNextDlgTabItem/GetNextDlgGroupItem must work with all windows
65 -> radiobuttons
66 fixed scrollbar timer handling
67 pmframe: fixed WM_ACTIVATE bug
68
69 99-10-29 Markus Montkowski <mmontkowski@gmx.de>
70 - GDI32: Fixed bug in CreateDIBSection, only copy ptr when ptr. var not
71 NULL.
72 Added DIBSections to GetObject_A, so programms can query
73 a DIBSECTION for the obj.
74
75 99-10-30: Daniela Engert <dani@ngrt.de>
76 - USER32: Fixed missing repaints for transparent windows (VPBuddy!)
77
78 99-10-30: Sander van Leeuwen <sandervl@xs4all.nl>
79 - USER32: Ported Wine MapDialogRect -> fixes Calc dialogs
80
81 99-10-30: Edgar Buerkle <Edgar.Buerkle@gmx.net>
82 - USER32: Port Wine ascii <-> unicode message conversion for user32 controls
83 (Wine controls only support ascii msgs)
84
85 99-10-30: Jens Wiessner <wiessnej@rfi.de>
86 - MSVCRT: Fixed .def file
87
88 99-10-29: Christoph Bratschi <cbratschi@datacomm.ch>
89 - USER32: rewrote scrollbar code
90 added static styles
91
92 99-10-29: Sander van Leeuwen <sandervl@xs4all.nl>
93 - USER32: Changed font size multiply factor, negated it and fixed
94 default dialog unit bug.
95 Fixed MDI destroy bug
96 WM_SETICON bugfix.
97
98 99-10-29: Sander van Leeuwen <sandervl@xs4all.nl>
99 Rene Pronk<R.Pronk@twi.tudelft.nl>
100 - USER32: Focus fixes. Activate a window when it receives a button click message.
101
102 99-10-29 Markus Montkowski <mmontkowski@gmx.de>
103 - DDRAW: Changed logging, loginfo now in odin32_x.log for the first time...
104
105 99-10-28: Edgar Buerkle <Edgar.Buerkle@gmx.net>
106 - USER32: LoadBitmapW fix
107 ModifyMenuW/InsertMenuW fixes.
108 Call CallWindowProcA/W in Send(Internal)MessageA/W
109 (in preparation of Wine unicode msg translation port)
110 Always call default window handler for WM_PAINT. Apparently
111 there are apps that return 0, but don't call BeginPaint.
112 Added extra messages for msg translation.
113
114 99-10-28: Sander van Leeuwen <sandervl@xs4all.nl>
115 - ADVAPI32: Fixed dprintf bugs in OpenSCManagerA/W (%s instead of %d)
116
117 - makefiles: Added nodebuginfo build option to build debug binaries
118 without debug information. (for upcoming alpha release)
119
120 - KERNEL32: GetVersion fix. Low byte = major version, high byte = minor version
121 Destroyed shared heap on dll unload (refcount == 0)
122 Shared heap fixes.
123 GetWindowsDirectory & GetSystemDirectory return string that don't end with
124 a backslash.
125 Fixed loading of dlls without .dll extension.
126 Fixed OSLibStripPath.
127
128 - USER32: Fixed style conversion (use dwStyle, not cs->style, same for dwExStyle)
129 -> title bar in prof. minesweeper
130 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (didn't restore OS/2
131 selector before returning)
132 Don't delete global window classes.
133 Removed shared heap, use the one in kernel32 instead.
134 Fixed OSLibSetStyle & SetWindowLong for GWL_STYLE (wrong style used)
135 Fixed win32 to OS/2 style conversion (DLG frame)
136 Fix for timer messages in apps that use PeekMessage/DispatchMessage
137 instead of GetMessage/DispatchMessage.
138 Translation of extra messages.
139
140 99-10-28: Jens Wiessner <wiessnej@rfi.de>
141 - MSVCRT: Added stubs
142
143 99-10-27: Patrick Haller <phaller@gmx.net>
144 - KERNEL32: Fix: console (unicode) updates, NT4'S CMD.EXE works.
145 WARNING! lstrcpynAtoW has been modified, PLEASE VERIFY!
146
147 99-10-27: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
148 - WIN32K: It's working! At least on my testmachine running
149 the WSeB astrict UNI kernel and the Warp 4 astrict kernel.
150
151 99-10-27: Sander van Leeuwen <sandervl@xs4all.nl>
152 - KERNEL32: If dll can't be found, look in directory of kernel32 (PE loader)
153 Fixed iLoadLibrary (added .dll if it couldn't find this string in
154 the module name; now only does that if it can't find a '.')
155 Implemented WinExec using CreateProcessA.
156 Fixed file mapping view lookup bug. Views are now again stored
157 in per-process data segment.
158 Delete process memory maps in exitlist too.
159 - KERNEL32: Fixed bug in icon conversion (rgb only for <= 8bpp)
160 Added support for color cursors (needs more testing but seems to work)
161 - USER32: Added support for color cursors
162 Fix for class lookup in CreateWindowExA/W
163
164 99-10-26: Sander van Leeuwen <sandervl@xs4all.nl>
165 - USER32: Fixed bugs in menu apis (Append/InsertMenuA/W)
166 Fixed InsertMenuItemA/W.
167 Finished up Patrick's work -> regedit menus now correct
168 In winmenu call only ODIN_* menu apis; decreases amount of
169 logging and increases speed.
170
171 - KERNEL32: Removed menu resource + non-used resource methods
172 Fixed FS selector corruption in GetLocaleInfoA/W (use
173 ODINFUNCTION wrapper as it calls a OS/2 unicode api that has no
174 FS wrapper)
175
176 - PELDR: Increased stack from 192k to 640k (Quake 2 ran out of stack)
177 - DSOUND/DDRAW: Fixed FS selector corruption in logging procedures
178 ---> Quake 2 works again (Yeah! :) )
179 NOTE: Quake 2 3.20 only starts the first time. Seems to change something
180 in the config.cfg file that crashes it the next time you run it.
181 (workaround: save original config.sys and restore it afterwards)
182
183 99-10-26: Patrick Haller <phaller@gmx.net>
184 - USER32: Add: Ported Wine menu(ex) parser and integrated it into menu code
185 - WINMM: Fix: invalid callback check in dwaveout.cpp (Q2 makes noise again)
186
187 99-10-25: Sander van Leeuwen <sandervl@xs4all.nl>
188 - USER32: Removed SetFocus call in Edit control (WM_LBUTTONDOWN)
189 Virtual key translation table change (VK_RETURN (PM) -> 0x0A
190 VK_ENTER (PM_ -> 0x0A (VK_RETURN))
191 (fixes problems in edit control, but might not be a good fix)
192 Never call default window handler (PM) after WM_CHAR ->
193 PM sends the WM_CHAR to the owner window -> focus changes
194 in notepad.
195 - USER32: (menus)
196 Rewrote LoadMenuIndirectA/W to use OS/2 apis
197 Implemented GetMenuInfo & SetMenuInfo (just store new info; nothing else done)
198 Implemented GetMenuContextHelpId/SetMenuContextHelpId
199 (based on Wine build 990815)
200 Partially implemented GetMenuItemInfo.
201 NOTE: Needs a complete rewrite.
202
203 - INCLUDE\win\commctrl.h:
204 Changed back calling convention of callback handlers to CALLBACK.
205 -> fixes crashes in SHELL32 (DPASearch calls)
206
207 99-10-25: Achim Hasenmueller <achimha@innotek.de>
208 - KERNEL32: Added ReinitializeCriticalSection, ported WINE code
209 for this function and UninitializeCriticalSection
210
211 99-10-25: Patrick Haller <phaller@gmx.net>
212 - ODINWRAP: Fix: Bugfix + Heap Check embracing every wrapper function
213 - NTDLL: Add: functions by Jens Wiesner
214 - KERNEL32: Fix: enable WIN32.DEBUGBREAK environment variable for DebugBreak() API
215 - WSOCK32: Fix: invalid structure alignment for asynchronous operations
216
217 99-10-25: Markus Montkowski <mmontkowski@gmx.de>
218 - DDRAW: Fixed bug in Color conversion of surfaces DDEX1.EXE now works,
219 Get/ReleaseDC functions are working, but problem
220 with Bitmap orientation DDRAW surfaces are TopDown DCs Bmps are BottomUp
221 this neeeds to be solved (any way to create a TopDown DC Bmp?)
222
223 99-10-24: Sander van Leeuwen <sandervl@xs4all.nl>
224 - USER32: MDI window fixes (mdi children correctly activated; menus inserted)
225 Bugfix in WM_GETTEXT of Edit control (wrong string length)
226 Only create global classes when CS_GLOBALCLASS flag specified
227 Create system classes only every first time user32 is loaded
228 and only unregister them when the last win32 app quits.
229 Converted all OS/2 bitmaps to windows format and put them in user32.rc
230 (deleted all bmp files)
231 - USER32,
232 COMCTL32,
233 SHELL32: Don't check if control atom already exists, always register
234 control.
235 NOTE: Global classes have a global atom, but the class objects
236 are NOT shared! (so you must recreate them for every app)
237
238 - KERNEL32: Implemented shared memory mapped files (SDK memory sample
239 works for shared memory; haven't tested files and it requires
240 more testing!)
241 Added shared heap code for memory mapped objects
242
243 99-10-24: Daniela Engert <dani@ngrt.de>
244 - KERNEL32: Fixed cursor in VPBuddy (invalid size)
245
246 99-10-23: Christoph Bratschi <cbratschi@datacomm.ch>
247 - USER32: added more metrics for GetSystemMetrics
248 added WM_SYSTIMER support
249 several scrollbar bug fixes
250
251 99-10-23: Sander van Leeuwen <sandervl@xs4all.nl>
252 - USER32: Put back WM_ADJUSTWINDOWPOS/WINDOWPOSCHANGED into pmwindow.cpp
253 Put message logging procedure in wndmsg.cpp.
254 Don't log WM_KICKIDLE & WM_NCHITTEST messages. (sent too often)
255 Don't set capture to listbox window in comboboxes (after lbuttonup)
256 Use wrc to compile USER32 resources + added version resource
257 Fixed PMFRAME window position handlers and put them back.
258 (comboboxes now displayed properly)
259
260 - KERNEL32: Write logfiles to directory of kernel32 if executable is on
261 readonly device.
262 Fixed CreateProcess.
263 Added support for GetVersionSize/GetVersionStruct for images
264 that aren't loaded. (LX or PE; PE not tested!)
265 - DSOUND: Made it compile again. (always pretends there's no soundcard in the system)
266 - SHELL32/COMCTL32: Changed file description in version resource
267
268 99-10-22: Daniela Engert <dani@ngrt.de>
269 - KERNEL32: fixed bad icon masks
270
271 99-10-22: Sander van Leeuwen <sandervl@xs4all.nl>
272 - WINMM: Fixes for waveout playback (don't use callback when there
273 were errors when opening the device; return the correct
274 number of devices present) (Pinball no longer crashes when
275 there's no soundcard (driver) in OS/2)
276 Disabled logging of timeGetTime
277 - KERNEL32: Disabled logging for _lread (calls ReadFile which does it's own logging)
278 Return XCPT_CONTINUE_SEARCH for unhandled exceptions if
279 an OS/2 app uses the Odin32 api. (instead of killing the app)
280
281 - COMCTL32: Fixed tab width bug. (GetTextExtentPoint32A used for unicode strings)
282 Use Wine resource compiled with wrc. Removed all Native* resource loading.
283 Added version resource.
284
285 - USER32: Fixed corruption of OS/2 exception chain in dc.cpp & caret.cpp
286 (fixes dll loading after the exe has started; i.e. after clicking
287 on the Find tab in winhlp32's Search dialog)
288 Do not send WM_COMMAND messages to the window handler before
289 it has receive it's WM_CREATE msg.
290 Winhlp32 crashes when that's done before WM_INITDIALOG, but
291 VPBuddy no longer responds to buttons when you refuse to
292 send messages before WM_INITDIALOG. (TODO)
293 Send WM_WINDOWPOSCHANGING/CHANGED messages from frame handler.
294 Fixed MapWindowPoints.
295 - INCLUDE\os2wrap.h: Fixed infinite recursion in GpiDestroyPS
296
297 99-10-22: Edgar Buerkle <Edgar.Buerkle@gmx.net>
298 - USER32: TrackPopupMenu(Ex) fixes (window handle translation)
299 - KERNEL32: HeapReAlloc bugfix (copy min(oldsize, newsize) bytes)
300
301 99-10-21: Sander van Leeuwen <sandervl@xs4all.nl>
302 - KERNEL32: Increase reference count for LX dlls. (RegisterLxDll)
303 Set memory protection flags to READONLY for PAGE_NOACCESS
304 - USER32: Added support for SWP_NOSIZECHANGING to SetWindowPos
305 Fixed WM_ADJUSTWINDOWPOS (when position/size changed by app)
306 Combobox fixes (simple combobox works, more complex don't)
307 Don't check instance handle if handle == handle of exe for
308 class lookup.
309 - GDI32: Fixed bug in DIBSection ctor (next ptr not initialized)
310
311 99-10-20: Edgar Buerkle <Edgar.Buerkle@gmx.net>
312 - GDI32: Implemented EnumFontFamiliesA/W
313
314 99-10-20: Sander van Leeuwen <sandervl@xs4all.nl>
315 - USER32: Added support for WM_WINDOWPOSCHANGING in default window handler
316 (ported from Wine 990815)
317 Convert back windowpos structure in WM_ADJUSTWINDOWPOS (NOT DONE)
318 Bugfixes for PM WM_WINDOWPOSCHANGED handling & OSLibMapSWPtoWINDOWPOS.
319 (Win32 WM_WINDOWPOSCHANGED now also sends window coordinates, not client)
320 Rewrote MapWindowPoints. (NOTE: Needs to be tested!)
321 Combobox bugfix (resizing listbox using old rectangle -> get current
322 one)
323
324 99-10-20: Patrick Haller <phaller@gmx.net>
325 - WSOCK32: Partial rewrite of WSA async sockets completed.
326
327 99-10-20: Christoph Bratschi <cbratschi@datacomm.ch>
328 - KERNEL32: Ini file for Odin settings (i.e. windows & system dir)
329 Added Odin.ini.txt
330
331 99-10-19: Sander van Leeuwen <sandervl@xs4all.nl>
332 - KERNEL32: FindResource bugfix: "DIB" type is the same as "BITMAP"
333 (VPBuddy fix)
334 NOTE: Currently disabled. VPBuddy expects something other
335 than a pointer to the raw resource data for such
336 bitmaps. (TODO)
337 - USER32: Windows without a parent have the desktop window as parent.
338 MDI additions.
339 Combobox bugfixes.
340 GetWindowTextA/W bugfixes (return 0 if there's no window name)
341
342 99-10-19: Yuri Dario <mc6530@mclink.it>
343 - USER32: Initialize MDI client variables before calling Win32BaseWindow
344 constructor
345
346 99-10-19: Jens Wiessner <wiessnej@rfi.de>
347 - RASAPI32: Added stubs
348
349 99-10-19: Daniela Engert <dani@ngrt.de>
350 - USER32: excessive background erases tamed
351
352 99-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
353 - USER32: Set/clear WS_VISIBLE flag in ShowWindow
354 Fix for scrollbar redraw
355 Put back original Wine code for LISTBOX_UpdateScroll.
356 Rewrote EnumChildWindows (winzip works quite well now!)
357
358 99-10-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
359 - COMDLG32: Disable comdlg hooks for now. They don't work anyway.
360
361 99-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
362 - USER32: Ported AdjustWindowRectEx from Wine (990815)
363 Changed GetClientRect to return rectangle stored in
364 window object.
365 Ported (Begin/End)DeferWindowPos from Wine (990815)
366 Ported GetWindow from Wine (990815)
367 Fixed dialog control creation bug (create ascii controls when
368 parent window is ascii)
369 Implemented SetWindowPlacement (not complete done)
370 Fixed GetWindowPlacement (handle translation), still
371 needs to be implemented though.
372 Don't change PM window style in WM_DESTROY handler -> crash in PMMERGE
373 Bugfixes for Enum(Thread/Child)Window (wrong call to get object ptr)
374 Fixed FindWindowEx method to map frame window to object ptr.
375 Fixed WM_WINDOWPOSCHANGED handler for scrollbars (set window &
376 client rectangle)
377 Fixed WM_MOUSEMOVE handler for scrollbars (return 1 to let
378 PM change the mouse cursor back to the default)
379 Fixed GetDlgItem. According to SDK docs this api should work
380 for any parent-child pair. (behaviour seen in VPBuddy)
381 Added MFC message support for message printfs
382
383 99-10-17: Christoph Bratschi <cbratschi@datacomm.ch>
384 - USER32: replaced OS/2 scrollbars by WINE scrollbars
385 BUG: SCROLL_RefreshScrollBar doesn't work
386 GetDC returns a wrong DC, BeginPaint works as it should
387 Send as few WM_ENTERIDLE messages as possible -> low CPU usage
388 pmframe: removed WinFillRect
389 implemented: DrawIcon/DrawIconEx
390 fixed static icon size
391 pmframe: added PSF_CLIPSIBLINGS
392
393 99-10-17: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
394 - KERNEL32: Removed exception throwing from Pe2Lx classes.
395 Implemented TLS support in Pe2Lx classes.
396
397 99-10-16: Yuri Dario <mc6530@mclink.it>
398 - USER32: Button bugfix (BUTTON_CheckAutoRadioButton)
399 Win32dlg.cpp: cosmetic changes
400 - include\os2wrap.h: define inline as _inline in C mode
401 - include\win\winsock.h: Added prototypes
402 - src\makefile: shell32 depends on ole32 & version, build it after those two dlls
403 - SHELL32: Replaced full path with CPPMAIN for wrc parameters
404 - win32k/makefile: replaced full path with macros
405 - WSOCK32: Build export library (impdef to create correct .def)
406
407 99-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
408 - USER32: Don't process size messages before sending WM_NCCREATE
409 message when creating a window. (can mess up our window
410 and client rectangle)
411 Erase background for buttons. (fixes groupbox redraw problems)
412 isFrameWindow bugfix + MDI creation & WM_NCCALCSIZE bugfix
413
414 99-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
415 - USER32: CBT Hook bugfix. Only respond to WM_NCCREATE msg to send
416 HCBT_CREATEWND.
417 Scrollbar bugfix. Pass all msgs we don't use to default
418 window handler. (used to do this only for > WM_USER -->
419 return value of 0 for WM_NCCREATE cancels window creation)
420 GetWindow bugfix. (related window can be frame window)
421 Fixed window & child destruction process.
422 - KERNEL32: Fixed VirtualQuery bug.
423
424 99-10-15: Edgar Buerkle <Edgar.Buerkle@gmx.net>
425 - USER32: Basic message translation to fix problems in win apps
426 that wait for a specific message. (NOT COMPLETE)
427
428 99-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
429 - USER32: Fixed WM_WINDOWPOSCHANGED (frame window rectangle)
430 Partly implemented CopyImage (only simple copies of icons
431 and cursors; FAR FROM COMPLETE!)
432 Removed FillRect during WM_PAINT in subclassed frame handler.
433 (still some redraw problems with i.e. button.exe; a little
434 worse than before)
435
436 99-10-14: Patrick Haller <phaller@gmx.net>
437 - KERNEL32: Fix: threads might need more memory in debug mode (thread.cpp)
438 Fix: a little cleanup (virtual.cpp)
439 Fix: lstrcpyAW taking NULL parameters (broken WINE controls?) (heapstring.cpp)
440 - ADVAPI32: Fix: RegConnectRegistryA slightly improved
441
442 99-10-14: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
443 - PE2LX: New implementation in src\win32k\pe2lx.
444 No resource conversion. I have tested it, but do expect to
445 find some bugs. And when you find, please give me a hint.
446 The new Pe2Lx uses much support code,(heap, printf..)
447 from win32k. It also uses the sub-system CRT library (as
448 win32k does). This way more of the win32k code will be
449 tested in Ring 3, so there'll simply be less bugs to track
450 down in Ring 0 and kernel debugger/ICAT.
451 - KERNEL32: Win32???Pe2Lx classes is updated to match the new Pe2lX.
452 Note that TLS is not implemented yet - it's in the line.
453 Fix: Made a temporary fix in atom.cpp for some of the W
454 functions. The string isn't allways a string... I do a
455 permanent fix some other day.
456 - WIN32K: Compiles and links. But Not Tested!
457
458 99-10-14: Edgar Buerkle <Edgar.Buerkle@gmx.net>
459 - USER32: lstrcmpW: check for null pointers
460 RemovePropA SetPropA bugfixes (wrong wnd handle)
461
462 99-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
463 - USER32: Fixed shrinking listbox in shell about dialog.
464 (add border size to size during window creation & SetWindowPos)
465 Support for WM_NCCALCSIZE. Not completely working yet.
466 Fixed crash in Winhlp32 (annotate creates multiline edit
467 control that received PM messages too early -> divide by 0)
468 -> Don't allow WM_WINDOWPOSCHANGED messages until after WM_NCCREATE.
469 Removed previous OSLibMapWINDOWPOStoSWP bugfix.
470 Default dialog xBaseUnit = 10, yBaseUnit = 20.
471 Only set FCF_TASKLIST bit when parent == desktop & window
472 has titlebar. (too many Opera windows in tasklist)
473 Clear unsupported frame styles (i.e. no titlebar & minimize/maximize button)
474 Fixed MapOS2ToWin32Rectl & GetWindowRect.
475 Removed code that adds bordersize during SetWindowPos & window
476 creation. Fixed listbox code instead. (use window rectangle
477 for SetWindowPos call, not client rectangle)
478
479 - USER32: Rewrote window creation. All Odin windows are OS/2 frames.
480 2nd half of window/dialog creation carried out during OS/2
481 WM_CREATE message.
482 Don't call default frame handler during WM_ADJUSTWINDOWPOS
483 for child windows. Fixes incorrect position.
484 Probably needs to be fixed again.
485 NOTE: NOT WORKING CORRECTLY JUST YET!!
486
487 - COMCTL32: Check infoPtr in toolbar during WM_ERASEBKGND
488 - KERNEL32: Added wprocess.cpp dependency for include\win\thread.h
489 Bugfix for loading dlls in pe loader -> increase reference count
490 In iLoadLibrary first check if the dll has already been loaded.
491 Fixed console initalization for pe loader apps.
492 Fixed SetWin32TIB. Return current FS selector for Odin32 apps.
493 Removed generic.exe fix in OS2UnsetExceptionHandler.
494 (creates problems when loading multiple PE dlls with pe loader
495 and generic.exe still works fine now)
496 - SHELL32: use wrc from tools directory
497
498 99-10-13: Patrick Haller <phaller@gmx.net>
499 - KERNEL32: Fix: XCPT_GUARD_PAGE_VIOLATION are now supported.
500 (helps PROGMAN.EXE)
501 - USER32: Fix: parameter checking in RedrawWindow
502 Fix: temp fix for MsgWaitForMultipleObjects
503
504 99-10-12: Sander van Leeuwen <sandervl@xs4all.nl>
505 - USER32: DrawMenuBar & DrawCaptionTempA bugfix (window handle translation)
506 Added Win32ToOS2FrameHandle method
507 Set default mouse pointer back if app doesn't process WM_MOUSEMOVE
508 message.
509 Bugfix in button control -> return non-zero if WM_MOUSEMOVE
510 message doesn't change the cursor.
511 Same fix in edit & listbox control.
512 Looks like the same bug is in the scrollbar code.
513 Preliminary listbox fixes (scrollbar related)
514 Don't show scrollbars when window is created.
515
516 - USER32: Added support for extra messages in default window handler.
517 Partial support for WM_SYSCOMMAND in default window handler.
518 MDI child bugfix (window now displayed correctly)
519 Only subclass frame when it has a 3d border OR *only* the
520 WS_BORDER borderstyle.
521 Fixed y mapping bug in OSLibMapWINDOWPOStoSWP (converted
522 twice (win32 -> os2 -> win32))
523 - USER32: Set focus to edit control when receiving WM_LBUTTONDOWN
524
525 - USER32: Don't send WM_COMMAND during WM_SETFOCUS in edit control when
526 dialog hasn't been completely created. (crashes VPBuddy; can't
527 find dialog control that hasn't been created yet)
528 NOTE: EXPERIMENTAL FIX. NEEDS TO BE CHANGED.
529
530 99-10-11: Christoph Bratschi <cbratschi@datacomm.ch>
531 - USER32: pmframe finished
532
533 99-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
534 - USER32: Disabling the desktop window is a very bad idea.
535 (desktop no longer responds to mouse clicks)
536 Enable method in desktop window class that does nothing.
537 Added support for extra messages in msg printf code
538 Ported almost all Wine code for CTLCOLOR messages.
539 Return -1 in DefWindowProc for WM_VKEYTOITEM & WM_CHARTOITEM
540 Fix for MDI child window. They're now displayed, but it's
541 still not right.
542 - SHELL32: Fixed Shell32 about dialog.
543 Compile Wine resource with WRC and link with dll.
544 Added version resource
545 Call Wine dll entrypoint in initterm.cpp.
546 - INCLUDE: Only include stdlib.h when wrc is not active
547 Extra definitions for compiling win32 apps in OS/2
548
549 99-10-11: Edgar Buerkle <Edgar.Buerkle@gmx.net>
550 - GDI32: GetTextFaceW bugfix
551 - USER32: Init ownDC to 0
552 Create empty dialog in CreateWindowExA/W if class == dialog
553 Support for class atoms in CreateWindowExA/W
554 Win32Dialog::getNextDlgGroupItem() bugfix
555
556 99-10-11: Christoph Bratschi <cbratschi@datacomm.ch>
557 - GDI32: Bugfix for Pie Open32 api
558
559 99-10-10: Christoph Bratschi <cbratschi@datacomm.ch>
560 - USER32: fixed radio buttons, disabled text output
561
562 99-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
563 - USER32: Ported GetNextDlgGroupItem & GetDlgItemInt from Wine
564 Window handle translation fix for MessageBoxW
565 Don't create frame windows for windows with a 3d border.
566 (fixes crash in VPBuddy; don't know why)
567 - COMDLG32: Fix for most unicode functions (window handle translation
568 missing as reported by Edgar Buerkle)
569
570 99-10-10: Edgar Buerkle <Edgar.Buerkle@gmx.net>
571 - KERNEL32: Bugfix for GetFullPathNameW (NULL ptr check)
572
573 99-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
574 - USER32: Clipboard fixes (window handle translation)
575 Fixed button redraw when receiving a WM_ENABLE msg
576 Use the supported Open32 system colors and only use
577 those from Wine for the new (9x) colors
578 - SHELL32: Moved old to current, current to old dir
579 - KERNEL32: Don't switch FS selectors for Odin32 OS/2 apps (win32
580 apps compiled in OS/2).
581 Fixed reversed stack top & bottom in TEB structure.
582 - KERNEL32 Added code to dispatch OS exceptions to win32 apps.
583 Doesn't seem to be necessary though, so it's inactive for now.
584 - USER32: Fixed resizing in winhlp32. Doesn't seem to break anything
585 else. (needs more testing though)
586 Only increase y position of window if it's initial y <> 0.
587 Fixed desktop window lookup (GetWindowFromHandle)
588 Set dummy desktop window handler;
589 Mdi client bugfix (reported by Yuri Dario)
590
591 99-10-09: Jens Wiessner <wiessnej@rfi.de>
592 - CRTDLL: Implemented functions; only 62 stubs left
593
594 99-10-09: Edgar Buerkle <Edgar.Buerkle@gmx.net>
595 - USER32: Enabled accelerator WM_COMMANDs
596 - COMDLG32: Fix for GetOpenFileNameW (owner hwnd translation)
597
598 99-10-08: Daniela Engert <dani@ngrt.de>
599 - USER32: fix: miscoloured bitmaps
600
601 99-10-08: Christoph Bratschi <cbratschi@datacomm.ch>
602 - USER32: added WM_STYLECHANGING/WM_STYLECHANGED.
603 button,combo: bitmap fix.
604 added frame to children with WS_* border flags
605 subclass frame windows
606 SendDlgItemMessageA/W fixed
607 CheckRadioButton fixed
608 merged controls with WINE 990923
609
610 99-10-08: Edgar Buerkle <Edgar.Buerkle@gmx.net>
611 - KERNEL32: Accelerator conversion fixes + changes
612
613 99-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
614 - USER32: Bugfix for SetWindowPos; take frame size into account
615 Removed WM_MOVE notification class flag for Odin PM windows
616 Removed SetWindowPos frame size bugfix
617 Removed WM_WINDOWPOSCHANGED cy bugfix
618 Set WS_DISABLED window style bit when receiving PM WM_ENABLE
619 GetClassInfoA bugfix
620 Window property bugfixes (no handle translation)
621 Set last error when window creation fails.
622 In DefDlgProcA/W, call DefWindowProcA/W if window is not
623 a dialog. Fixed problems in VPBuddy.
624 Unknown if that's a bug in the app or something else goes wrong.
625 - KERNEL32: Bugfix for loading winspool
626 Ported latest Wine exception code (RtlRaiseException/RtlUnwind)
627
628 99-10-07: Christoph Bratschi <cbratschi@datacomm.ch>
629 - USER32: GetCaretPos() fix
630
631 99-10-07: Achim Hasenmueller <achimha@innotek.de>
632 - USER32: Corrected pageup/pagedown behavior
633
634 99-10-07: Rene Pronk <R.Pronk@twi.tudelft.nl>
635 - USER32: Fixed WM_WINDOWPOSCHANGED behavior so that
636 client windows are properly resized. This fixes
637 the Winhlp32 history resize problem
638
639 99-10-07: Edgar Buerkle <Edgar.Buerkle@gmx.net>
640 - USER32: Set window PM id for Odin windows.
641 Bugfix for WM_QUERYWINDOWPARAMS handler
642 Case insensitive string compare in CreateWindowExA/W for
643 mdi client class check.
644 Create ascii or unicode mdi child window based on mdi client
645 window type.
646
647 99-10-07: Jens Wiessner <wiessnej@rfi.de>
648 - CRTDLL: Includes all functions (added stubs and fully implemented functions)
649
650 99-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
651 - USER32: Only display scrollbars when they need to be shown.
652 (also fixes redraw problems with inactive scrollbars)
653 Resize bugfix. Winhlp32 can now be resized without problems.
654 Whether this fix is correct is another matter.
655
656 99-10-06: Daniela Engert <dani@ngrt.de>
657 - USER32: fix: adjust caret position if window height changes.
658
659 99-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
660 - USER32: Fixed memory leaks in SetWindowTextA/W window class methods
661 - KERNEL32: Put back my changes (10/04/99) in winimgres.cpp
662
663 99-10-06: Patrick Haller <phaller@gmx.net>
664 - KERNEL32: Fix: DLLs without Resource Segment (pResDir == NULL)
665 Fix: VirtualFree not freeing memory fixed, WINHLP32 looks healthier :)
666
667 99-10-05: Christoph Bratschi <cbratschi@datacomm.ch>
668 - USER32: rewrote color management
669
670 99-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
671 - KERNEL32: Set fs:0 to -1 in OS2UnsetExceptionHandler.
672 Prevents crash due to corrupted handler chain (see
673 comments in that function)
674 - ODIN32API: Remove exception handler set & unset. Not necessary
675 as it's also done in the start method of an exe image.
676
677 99-10-04: Patrick Haller <phaller@gmx.net>
678 - SHELL32\NEW: Compilation fix (indirectly included win32type.h)
679 - KERNEL32: Support for DisableThreadLibraryCalls
680
681 99-10-04: Edgar Buerkle <Edgar.Buerkle@gmx.net>
682 - USER32: Fixes for window style update, mouse button messages,
683 WS_CAPTION style and apps with a dialog as their main window.
684 (set owner to desktop)
685 - KERNEL32: Extra checks for valid heap pointers
686
687 99-10-04: Sander van Leeuwen <sandervl@xs4all.nl>
688 - USER32: Deleted dialog.cpp
689 Set last error to 0 if dialog creation succeeds.
690 Added flag to distinguish between messages sent by PM and
691 those sent by apps
692 Handle WM_SETTEXT messages passed to default window handler
693 (only if not sent by PM)
694 - VERSION: Fix for string compares in VersionInfo32_FindChild (has
695 to be a lstrcmpniW)
696 - SHELL32: Removed nameid.h include in she.cpp & sh.cpp. Fixed makefile
697 addition for export library (extra ".." for tool path)
698 - DPLAY, MSACM32: Compilation fix (indirectly included win32type.h)
699 - KERNEL32: Fixed getVersionStruct for PE & LX images (didn't copy
700 version data before)
701 Fixed module name lookup for win32 images executed by the PE
702 loader. (can't use OSLibQueryModuleHandle for those)
703 Added lstrcmpniW function
704 Set full path for LX images
705 Support for retrieving the first resource of a certain type
706 (version ids no longer hardcoded as id 1; just get the first one
707 present)
708
709 99-10-04: Jens Wiessner <wiessnej@rfi.de>
710 - CRTDLL: Implemented functions + added stubs
711 - MSVCRT: More stubs + crtdll forwarders
712
713 99-10-04: Yuri Dario <mc6530@mclink.it>
714 - ddeml.h: new macros
715 - mmsystem.h: changed sndPlaySound and mciCommand prototypes (as in MS sdk)
716 - shlobh.h: added ifdef for direct inclusion
717 - winbase.h: added UnlockResource macro
718 - windef.h: changed return type (maybe also other functions are wrong)
719 - windows.h: included ddeml.h
720 - windowsx.h: added macros
721 - wingdi.h: added win95 bitmap structures
722 - winuser.h: few macros and changed DLGTEMPLATE prototypes as in MS sdk
723 - crtdll.cpp: now includes libc/locale.h, so toolkit headers are included also for VA36
724 - shell32/makefile: added code for library export.
725 - shell32/new/makefile: added code for library export.
726 - dialog.cpp: DLGTEMPLATE changes
727 - windlg.cpp: DLGTEMPLATE changes.
728 - win32k/makefile: corrected paths
729 - win32k/include/pe2lx.h: this section should be included for VA36
730
731 99-10-03: Daniela Engert <dani@ngrt.de>
732 - USER32: WM_MOUSEMOVE bugfix (removed check for captured mouse)
733
734 99-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
735 - USER32: Updated window class with isMDIClient method
736 Fixed DrawTextExA/W compile errors (different parameter types)
737
738 99-10-02: Christoph Bratschi <cbratschi@datacomm.ch>
739 - USER32: DrawTextExA/W: implemented DT_END_ELLIPSIS
740 added DrawTextExA/W to header files
741
742 99-10-02: Edgar Buerkle <Edgar.Buerkle@gmx.net>
743 - VERSION: Allocation bugfix in VerQueryValueA
744 - USER32: Added style changes for PM windows + don't clear WS_VISIBLE
745 flag when converting window styles. (fixes buttons in winhlp32)
746
747 99-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
748 - DDRAW: ifdef'ed out code that causes crash (OS2Surface destructor)
749 Free original translation buffer, not the one aligned to qword
750 boundary.
751 - USER32: Create frame window for windows with desktop as parent (i.e. WS_POPUP)
752 This makes sure WM_ACTIVATE messages are sent.
753 Scrollbar changes.
754 Call DestroyWindow when DefWndProc receives WM_CLOSE msg.
755 - KERNEL32: Allocate memory from heap when HeapReAlloc is called with
756 a NULL memory pointer (WINE listbox control depends on this)
757 - AVIFIL32: Compilation fix
758
759 99-10-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
760 - KERNEL32: Skip spaces in command line string
761 - USER32: Fix for MessageBoxA (window handle conversion)
762 Fixes for combobox (handles null pointers)
763 - GDI32: Added OSLibSetDIBitsToDevice
764
765 99-10-01: Jens Wiessner <wiessnej@rfi.de>
766 - CRTDLL: Implemented functions + added stubs
767 - MSVCRT: More stubs + crtdll forwarders
768
769 99-09-29: Daniela Engert <dani@ngrt.de>
770 - USER32: improved timer handling for caret blinking.
771 recreate carets on focus change if needed.
772
773 99-09-29: Sander van Leeuwen <sandervl@xs4all.nl>
774 - USER32: Almost completed standard window scrollbars.
775 Fixed WM_ACTIVATE message, generate WM_ACTIVATEAPP message
776 when WM_ACTIVATE is received. (instead of WM_SETFOCUS)
777 NOTE: Still not working correctly. Too many WM_ACTIVATEAPP msgs generated.
778 Always send Odin window handles from pmwindow.cpp to win32wbase.cpp.
779 Send WM_CHILDACTIVATE msg to MDI child windows.
780
781 99-09-28: Christoph Bratschi <cbratschi@datacomm.ch>
782 - USER32: Mouse input functions: SetCapture() fixed
783 SystemParametersInfo(): fonts fixed
784 GetSystemMetrics(): changed icon size to 32x32
785 Sorting and fixing user32.cpp
786
787 99-09-28: David Raison <djr@lemur.co.uk>
788 - KERNEL32: Fixed GetComputerNameA
789
790 99-09-28: Jens Wiessner <wiessnej@rfi.de>
791 - CRTDLL: Updated _except_handler2 + added Wine source changes
792 - MSVCRT: Created. Forwards most apis to CRTDLL or NTDLL.
793
794 99-09-28: Sander van Leeuwen <sandervl@xs4all.nl>
795 - USER32: Only generate WM_CHAR when TranslateMessage is called for
796 WM_KEYDOWN. (TODO: WM_SYSCHAR)
797
798 99-09-28: Daniela Engert <dani@ngrt.de>
799 - USER32: Caret functions implemented
800 ScrollDC implemented
801 ScrollWindowEx implemented
802
803 99-09-28: Patrick Haller <phaller@gmx.net>
804 - KERNEL32: Add: debug info for missing API imports (WinImagePeLdr)
805 Fix: source cleanup, introduction of WIN32.DIR.SYSTEM and WIN32.DIR.WINDOWS
806 as overrides over the STUPID Open32 result. I don't want to have Win32 apps
807 messing up x:\OS2 ....
808
809 99-09-26: Daniela Engert <dani@ngrt.de>
810 - USER32: SetTimer/KillTimer work now.
811
812 99-09-26: Achim Hasenmueller <achimha@innotek.de>
813 - COMCTL32: Merged with WINE 990923 changes
814 (propsheet.c not fully done)
815
816 99-09-26: Sander van Leeuwen <sandervl@xs4all.nl>
817 - USER32: Started with standard window scrollbar implementation
818 Rewrote ScrollWindow (seems to work ok)
819 Set text bugfix (crash in about dialog box of generic.exe)
820 Send WM_INITDLG after creation of dialog controls.
821 Set last error to 0 at end of BeginPaint/EndPaint.
822 Set last error when window not found (window.cpp/windlg.cpp)
823 WM_(SYS)KEYUP/DOWN bugfix (repeat cnt & scancode reversed)
824 Generate WM_CHAR message when TranslateMessage is called for
825 WM_CHAR (PM) message. (sent after WM_(SYS)KEYUP/DOWN)
826
827 99-09-25: Christoph Bratschi <cbratschi@datacomm.ch>
828 - USER32: WS_EX_* 3D frame support for child windows
829 - USER32: Double click handling changed
830
831 99-09-25: Sander van Leeuwen <sandervl@xs4all.nl>
832 - USER32: Cursor fixes. Cursor shown correctly in winhlp32.
833 Don't call WinDefWindowProc for WM_MOUSEMOVE (resets
834 cursor to system default)
835 RedrawWindow: set window pointer to desktop window when hwnd == NULL
836 - KERNEL32: Cursor & cursorgroup fixes
837 Fixes for thread local memory allocation (only done for thread 0)
838 Create TEB selector + memory for threads we don't create.
839 (i.e. DART threads in WINMM)
840 NOTE: Not tested.
841 - USER32\OLD, KERNEL32\OLD: Fixed makefiles + changes to make them
842 work with new dlls.
843
844 99-09-25: Daniela Engert <dani@ngrt.de>
845 - USER32: ClientToScreen and ScreenToClient didn't work -> fixed.
846
847 99-09-24: David Raison <djr@lemur.co.uk>
848 - OLE32: Ported remaining files pertaining to OLE32 from WINE
849 - OLEAUT32: Patched OaBuildVersion to level 0x1E...
850
851 99-09-24: Sander van Leeuwen <sandervl@xs4all.nl>
852 - USER32: Rewrote menu code to use Open32 (==PM) menu handles
853 Note: Uses mostly Open32 apis; they work fine, but maybe
854 we should write our own someday.
855 Cursor fixes. Not working in winhlp32 yet though.
856 - KERNEL32: Cursor & cursorgroup fixes
857
858 99-09-23: Patrick Haller <phaller@gmx.net>
859 - KERNEL32: Fix: WinImgRes:findResourceW erroneously tried to free
860 numerical resource IDs instead of translated Unicode
861 strings.
862 - USER32: Fix: in USER32:HeapShared:getmoreShared()
863 Fix: in USER32:WIN32WMDIClient:childActivate()
864 Fix: in USER32:WinMenu:GetSubMenu
865 now returns Win32MenuRes object instead of PM handle
866 Fix: in USER32:WinMenu:GetSystemMenu
867 now returns Win32MenuRes object instead of PM handle
868 Fix: in USER32:Char:CharPrevW intermixed arguments
869
870 99-09-23: Jens Wiessner <wiessnej@rfi.de>
871 - CRTDLL: Added stubs, implemented some stubs
872 - IMAGEHLP, IMM32, MSACM32, MSVFW32, OLEDLG,
873 OLECLI32, OLESVR32, PSAPI, RASPI32
874 Added dprintfs.
875
876 99-09-23: Sander van Leeuwen <sandervl@xs4all.nl>
877 - WINMM: Changed WinPostMsg calls into PostMessageA as win32 window
878 handles are not the same as PM handles anymore.
879 - USER32: Adding desktop window class. When user32 is loaded, a desktop
880 window object is created.
881 GetDesktopWindow returns handle of this window.
882 Winhlp32 no longer crashes immediately, but briefly shows
883 it's window before quitting.
884 Create windows always with HWND_TOP. The if statement (hwndLinkAfter)
885 in the CreateWindowExA method of Win32BaseWindow class messes
886 up the Z-order of dialog controls (i.e. buttons in a group box)
887 - COMDLG32: Fixed all common dialogs. (translate our handle to real PM handle)
888
889 99-09-22: David Raison <djr@lemur.co.uk>
890 - KERNEL32: Return "Service Pack 3" as CSD string in GetVersionExA/W
891
892 99-09-22: Yuri Dario <mc6530@mclink.it>
893 - MISC: Fixed WINELIB macro's in wingdi.h, added fixes to headers
894 for VAC 3.6.5
895 - ODINCRT: Also link with SOMLIB (VAC 3.6.5)
896 - CRTDLL: Compilation fix for VAC 3.6.5
897 - TOOLS\COMMON: Minor change to makefile
898 - TOOLS\IMPDEF: Minor change to makefile
899 - TOOLS\WRC: Makefile fixes
900
901 99-09-22: Rene Pronk <R.Pronk@twi.tudelft.nl>
902 - USER32: Changed WM_CHAR PM handling to generate WM_(SYS)KEYUP/DOWN
903 messages.
904 Note: Not complete as TranslateMessage doesn't translate
905 ascii keys to WM_CHAR messages.
906
907 99-09-22: Sander van Leeuwen <sandervl@xs4all.nl>
908 - USER32: Removed GetDesktopWindow fix
909 Ported getNextDlgTabItem & getDlgItem
910
911 99-09-21: Daniela Engert <dani@ngrt.de>
912 - USER32: background erasing/painting stuff hopefully finished.
913
914 99-09-21: Patrick Haller <phaller@gmx.net>
915 - KERNEL32: Add: GetFileAttributesExA/W implemented (ugly)
916
917 99-09-21: Sander van Leeuwen <sandervl@xs4all.nl>
918 - KERNEL32: Fixed cursor group conversion
919 - PELDR: Committed my latest sources. (rewrite for new kernel32 image classes)
920
921 99-09-21: Edgar Buerkle <100566.557@compuserve.com>
922 - USER32: Fixed GetDesktopWindow, added message handling for WM_TIMER
923 added code to choose best icon from icon group. (in OSLibWinCreateIcon)
924 - KERNEL32: Fix for converting icons & icon groups
925
926 99-09-19: David Raison <djr@lemur.co.uk>
927 - OLE32: Added AntiMoniker,
928 Updated regsvr32 to use RegisterLxExe
929
930 99-09-20: Sander van Leeuwen <sandervl@xs4all.nl>
931 - USER32: Fix background of button, group & static text
932 NOTE: Changed default behaviour of WM_CTLCOLOR* handling.
933 Don't know if this is correct, but it fixes problems
934 in dialogs (text with white instead of gray background)
935
936 99-09-20: Markus Montkowski
937 - WNASPI32: full implementation via ASPIROUT$ device driver.
938
939 99-09-19: Sander van Leeuwen <sandervl@xs4all.nl>
940 - USER32: Increased font pointsize for dialog (multiplied by two)
941 (probably not the right way to do things, but it works for the
942 dialogs in Solitaire)
943 Activated MsgEraseBackground method again (pmwindow.cpp)
944 Dialogs don't receive those otherwise.
945 (may need to be changed back again)
946
947 99-09-19: David Raison <djr@lemur.co.uk>
948 - USER32: Partially implemented MessageBoxIndirectA/W (forwarded to MessageBox)
949
950 99-09-18: Sander van Leeuwen <sandervl@xs4all.nl>
951 - KERNEL32: Added resource support for win32 apps compiled in OS/2
952 - INCLUDE: Header file changes for win32 apps compiled in OS/2
953 - VERSION: Create correct import lib
954 - WINMM: Create correct import lib
955 - MSACM32: Link with winmm.lib, don't import apis from .def file
956 - MSVFW32: Link with winmm.lib, don't import apis from .def file
957
958 99-09-18: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
959 - KERNEL32: Implemented lstrncmpiA
960
961 99-09-18: Jens Wiessner <wiessnej@rfi.de>
962 - CRTDLL: Added stubs
963 - SHELL32(NEW)/MSACM32/MSFW32: Link with kernel32 for lstrncmpiA
964
965 99-09-17: Daniela Engert <dani@ngrt.de>
966 - USER32: Fix: window focus management.
967 OSLIBWIN.H: the definitions of OSLIB_HWND_DESKTOP and
968 OSLIB_HWND_OBJECT were 1 off (with respect to the definition
969 in PMWIN.H)! So OSLIB_HWND_DESKTOP was in effect NULLHANDLE,
970 and OSLIB_HWND_OBJECT was HWND_DESKTOP.
971
972 99-09-16: Daniela Engert <dani@ngrt.de>
973 - USER32: Fix: UpdateWindow
974 New: RedrawWindow (preliminary), InvalidateR*
975
976 99-09-16: Patrick Haller <phaller@gmx.net>
977 - USER32: Fix: DIB_FixColorsToLoadflags - incr was not initialized
978 Fix: WINMENU::GetSystemMenu() was broken.
979
980 99-09-15: Sander van Leeuwen <sandervl@xs4all.nl>
981 - KERNEL32: Moved old kernel32 code to kernel32\old
982 Rewritten win32 exe/dll classes.
983 There are now classes for the following exes/dlls:
984 Pe2lx images, win32 images loaded by the pe loader and
985 LX images (win32 apps compiled in OS/2 and system dlls)
986 Bugfixes for unicode resource apis.
987 Not completely tested yet, but works for most apps.
988 NOTE: Resource handling for pe2lx & win32 apps compiled in OS/2
989 will be added in the near future. For now it's compatible
990 with the old pe2lx.
991 NOTE: New kernel32 doesn't work with old user32
992 NOTE: Win32Resource::lockResource not complete yet, but that part
993 will be removed after the pe2lx rewrite.
994 - USER32: Moved new user32 into user32 dir, old one to user32\old
995 - ALL: Changed initterm.cpp to create LX dll object during initialization.
996 IMPORTANT NOTE: Version increased from 3 to 4. Complete recompilation
997 of everything is required!
998
999 99-09-14: Patrick Haller <phaller@gmx.net>
1000 - AVIFIL32: ported AVIFIL32 from WINE
1001 - DPLAY: ported DPLAY from WINE
1002 Note: DPLAYX is required and NOT ported yet.
1003 Furthermore, DPLAY has still stubs.
1004 - DPLAYX: ported DPLAY from WINE (incomplete)
1005 Note: still problem with COM-inheritance-macro XCAST()
1006 - WNASPI32: ported WNASPI32 from WINE
1007 Note: someone should adapt it to OS/2's R3 ASPI router
1008
1009 99-09-14: Sander van Leeuwen <sandervl@xs4all.nl>
1010 - USER32\NEW: Implemented Enum(Thread/Child)Windows based on Edgar
1011 Buerkle's code with modifications for new user32 and
1012 added some enhancements.
1013
1014 99-09-13: Jens Wiessner <wiessnej@rfi.de>
1015 - NTDLL: Added CRT-functions.
1016
1017 99-09-13: Daniela Engert <dani@ngrt.de>
1018 - USER32\NEW: DC/related code: ReleaseDC, GetWindowDC, DC destruction,..
1019
1020 99-09-13: Patrick Haller <phaller@gmx.net>
1021 - SHELL32\NEW: updated to current wine level
1022
1023 99-09-13: David Raison <djr@lemur.co.uk>
1024 - KERNEL32: Fixed MultiByteToWideChar. Return size of string including
1025 0 terminator.
1026
1027 99-09-13: Jens Wiessner <wiessnej@rfi.de>
1028 - CRTDLL: Added functions.
1029
1030 99-09-08: David Raison <djr@lemur.co.uk>
1031 - OLEAUT32: Updated TypeLib code to find typelibs in EXE/DLL etc
1032 NB Still need to fix typelib translation.
1033
1034 99-09-12: Daniela Engert <dani@ngrt.de>
1035 - USER32\NEW: DC/related code: GetDCEx implemented. Slightly enhanced
1036 over Open32.
1037
1038 99-09-12: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
1039 - WIN32K: An untested version is checked in. The new skeleton is
1040 partially tested. PE2LX is not updated and will probably not be updated
1041 before pe2lx is rewritten.
1042
1043 99-09-09: Daniela Engert <dani@ngrt.de>
1044 - USER32\NEW: begin new DC/related code. BeginPaint/EndPaint done.
1045
1046 99-09-09: Patrick Haller <phaller@gmx.net>
1047 - SHELL32\NEW: shell32 done, it compiles + links, no testing yet
1048 - USER32: added stubs for GetMenuInfo + SetMenuInfo
1049 - USER32\NEW: added stubs for GetMenuInfo + SetMenuInfo
1050
1051 99-09-08: David Raison djr@lemur.co.uk
1052 - Src\OleAut32 Added stubs for undefined exports in OLEAut32
1053
1054 99-09-08: Yuri Dario <mc6530@mclink.it>
1055 - INCLUDE\WIN: Changes to wingdi.h (more WINELIB_NAME defs) & winuser.h (mssing definitions)
1056 Missing ';' in custcntl.h at line 106
1057
1058 99-09-08: David Raison djr@lemur.co.uk
1059 - INCLUDE\WIN: Added DECIMAL definition to windef.h
1060
1061 99-09-08: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
1062 - KERNEL32, USER32, USER32\NEW, GDI32, ADVAPI32: <dllname>exp.def is
1063 now generated by a util called ImpDef. (source in tools\impdef).
1064 - INC: pdwin32.tools is updated with a IMPDEF macro. This requires
1065 the macro PDWIN32_TOOLS too point to the tools\bin directory.
1066 - TOOLS: New directory tree for tools developed to aid us create odin32.
1067 Create a subdirectory for each tool.
1068 Currently database, impdef and omfdumper is placed here.
1069 - TOOLS\IMPDEF: generates the <dllname>exp.def files.
1070 - TOOLS\OMFDUMPER: source for the omfdumper use to create pmwinx.def.
1071 Base source for a library converted used in win32k.
1072 - TOOLS\DATABASE: source for the odin32 API database and it's tools.
1073 See the Odin32 API Database Design Document for more info.
1074 Document will soon be placed in the 'Vault' of the win32-os2 group.
1075 - TOOLS\DATABASE\MYSQL: mysql headers and libraries.
1076 - TOOLS\DATABASE\GD: Gifdraw 1.2 - used to draw graphs.
1077
1078 99-09-08: Patrick Haller <phaller@gmx.net>
1079 - OLE32: CLSIDFromStringA is needed in other modules, too. (SHELL32)
1080
1081 99-09-08: Sander van Leeuwen <sandervl@xs4all.nl>
1082 - Removed /DNONAMELESSUNION from some makefiles (now defined in odin.h)
1083 - Minor changes to odin.h (nameless union allowed in VAC 3.6.5) & windowsx.h
1084 - USER32\NEW: Use fixed user32exp.def. Doesn't work for GetOS2Callback__15Win32WindowProcFv
1085 (causes link failure for comdlg32)
1086 - TOOLS\WRC: Ported Wine wrc. Needs EMX+GCC
1087
1088 99-09-07: Jens Wiessner <wiessnej@rfi.de>
1089 - CRTDLL: Created dll (Wine port)
1090
1091 99-09-07: Patrick Haller <phaller@gmx.net>
1092 - OLE32: WINE_StringFromCLSID is needed in other modules, too. (SHELL32)
1093 - SHELL32\NEW: improvement of shell32
1094 - KERNEL32: ToolHelp functions stubbed: Process32First, etc.
1095
1096 99-09-05: Sander van Leeuwen <sandervl@xs4all.nl>
1097 - USER32\NEW: Dialog updates (not yet done)
1098
1099 99-09-04: Daniela Engert <dani@ngrt.de>
1100 - USER32\NEW: beginning with 'DAXifying' of our windows
1101
1102 99-09-04: Sander van Leeuwen <sandervl@xs4all.nl>
1103 - KERNEL32: Fixed icon- & cursorgroup conversion (Solitaire icon now correct again)
1104 - USER32\NEW: Started with Wine dialog code port. Dialog creation done,
1105 but not tested.
1106
1107 99-09-04: Jens Wiessner <wiessnej@rfi.de>
1108 - MSVFW32: Created stub (partly) dll (Based on Wine 990815)
1109 - PSAPI: Created stub dll (Based on Wine 990815)
1110
1111 99-09-03: Sander van Leeuwen <sandervl@xs4all.nl>
1112 - USER32\NEW: MDI child/client improvement (not all wine code has
1113 been ported though)
1114
1115 99-09-01: Patrick Haller <phaller@gmx.net>
1116 - *: Cleanup of include files, some ICOM issues in particular,
1117 also fixes LONGLONG problem (now names LONGLONG_W)
1118 - SHELL32\NEW: introduction of a straight port of WINE's SHELL32 implementation
1119 18 of 22 files are ported already
1120
1121 99-09-01: Patrick Haller <phaller@gmx.net>
1122 - *: Cleanup of include files. Warning: OS/2's BOOL is ULONG, WIN32 is INT.
1123 Causes C++ compilers to complain here and there. Plus many WINE prototypes
1124 are just plain wrong.
1125 This change should help porting shell32/new.
1126
1127
1128 99-09-01: Sander van Leeuwen <sandervl@xs4all.nl>
1129 - USER32\NEW: Fixed GetWindowDC (Freecell 'Cards Left' string drawn
1130 at the right place)
1131
1132 99-09-01: Jens Wiessner <wiessnej@rfi.de>
1133 - RASAPI32: Created stub dll
1134 - MSACM32: Created (partly) stub dll
1135
1136 99-08-31: Patrick Haller <phaller@gmx.net>
1137 - WINMM: revision of timer services (C&C RA)
1138 - KERNEL32: temporary fix for DuplicateHandle for non-HandleManager handles
1139 little improvement in console properties
1140 incorrect anchor class for mutexes, events and semaphores
1141 fixed return codes for HMCreateFileMapping, HMOpenFileMapping
1142 Fix: FILE_MAP_ALL_ACCESS access flags for memory mapped files
1143
1144 99-08-31: Sander van Leeuwen <sandervl@xs4all.nl>
1145 - USER32\NEW: Finished MDI class, but it's not working yet.
1146 - USER32\NEW: Fixed menu apis
1147 - KERNEL32\NEW: Changed makefile to generate response file (linker
1148 cmd line too long)
1149 Created resource class for menus (Win32MenuRes)
1150 - INC: Changed debug makefiles to include /dbgpack linker option
1151 (compresses debug info)
1152
1153 99-08-31: Rene Pronk <R.Pronk@twi.tudelft.nl>
1154 - USER32,USER32\NEW: Implemented ChildWindowFromPointEx
1155
1156 99-08-30: Jens Wiessner <wiessnej@rfi.de>
1157 - OLEDLG: Created stub dll
1158 - INC\WIN: Update for ras.h
1159
1160 99-08-30: Sander van Leeuwen <sandervl@xs4all.nl>
1161 - USER32\NEW: Redesign. Create base class for all window types
1162 Delete Open32 class atoms before recreating them.
1163 Added skeleton class for MDI client window.
1164
1165 99-08-29: Sander van Leeuwen <sandervl@xs4all.nl>
1166 - USER32\NEW: Changed behaviour of mouse messages (send NC messages
1167 when in non-client area + send WM_SETCURSOR msgs)
1168 Don't send WM_MOUSEMOVE when mouse is captured.
1169 Changed CreateMDIWindowA/W (don't call Open32 api anymore,
1170 but post WM_MDICREATE msg)
1171
1172 - KERNEL32 Interlock apis ported from Wine (with help of Patrick Haller)
1173 - INC: Removed Masm compatible flag for ALP and enabled debugging
1174 info in debug build
1175
1176 99-08-29: Jens Wiessner <wiessnej@rfi.de>
1177 - OLECLI32: Created stub dll
1178 - IMM32: Created stub dll
1179 - IMAGEHLP: Created (partly) stub dll
1180
1181 99-08-28: Sander van Leeuwen <sandervl@xs4all.nl>
1182 - USER32\NEW: Use shared memory for window & class objects
1183 Implemented FindWindow(Ex). Not yet tested
1184 Fixed window names.
1185 Created shared heap using VAC's _ucreate.
1186 Separate window handle creation (in shared memory array)
1187 PostMessage fixes (didn't work between two processes)
1188 - KERNEL32: Fixed exception handling for kill signals & termination
1189 Changed VMutex constructor (also allows creation of
1190 shared mutex semaphores)
1191 NOTE: This requires a complete recompile!!
1192
1193 99-08-28: Daniela Engert <dani@ngrt.de>
1194 - USER32\NEW: client windows get repositioned now when
1195 the parent resizes
1196
1197 99-08-28: Achim Hasenmueller <achimha@innotek.de>
1198 - COMCTL32: Merged with latest WINE updates (990815)
1199
1200 99-08-28: Yuri Dario <mc6530@mclink.it>
1201 - INCLUDE\WIN: Added macros to windowsx.h
1202
1203 99-08-27: Daniela Engert <dani@ngrt.de>
1204 - USER32\NEW: window creation, window relationship, window sizing and
1205 positioning enhanced.
1206 - USER32\NEW: window and client rectangles are in sync with the WINE
1207 structures now.
1208
1209 99-08-27: Sander van Leeuwen <sandervl@xs4all.nl>
1210 - KERNEL32: Rewrote memory mapped files for multiple views
1211 Increased default nr of pages loaded so loading
1212 large apps doesn't take forever to start in IPMD.
1213 - KERNEL32: Process dll exports before imports in order to support
1214 circular dll dependencies.
1215 - KERNEL32: Replaced fopen/fclose calls in windll.cpp; they mess up FS.
1216 Init full path of image during Init method.
1217
1218 99-08-27: Patrick Haller <phaller@gmx.net>
1219 - KERNEL32: removed logging page faults if mmapped i/o
1220
1221 99-08-26: Sander van Leeuwen <sandervl@xs4all.nl>
1222 - KERNEL32: Cleaned up. (removed os2native.cpp & os2util.cpp and
1223 replaced them with oslibdos.* & oslibmisc.*; put
1224 Virtual* win32 apis in virtual.cpp)
1225 - KERNEL32: Added workaround for (what seems to be) an OS/2 bug.
1226 Fixes crashes when reading from the memory mapped file.
1227 (see comments in kernel32\mmap.cpp)
1228 Bugfixes for VirtualProtect & VirtualQuery
1229
1230 99-08-25: Jens Wiessner <wiessnej@rfi.de>
1231 - OLESVR32: Created stub dll
1232
1233 99-08-25: Sander van Leeuwen <sandervl@xs4all.nl>
1234 - KERNEL32: Use memory mapped files for PE loader
1235 Readonly memory mapped files work. Read/Write has not
1236 been tested yet. Shared mmaps don't work at this time.
1237 - KERNEL32: Set exception handler chain to -1 (not 0) in KillWin32Process
1238 -> fixes large nr of exceptions
1239 - KERNEL32: Several changes for memory mapped files.
1240 Put back handlemanager changes. (i.e. MapViewOfFile)
1241 - USER32\NEW: Deleted win32type.h
1242 - ADVAPI32: Fixed some incorrect definitions of security apis
1243 - INCLUDE\WIN: Changed WINE_NAME_AW definition (now you can use
1244 apis without the 'A' or 'W' suffix)
1245 - INCLUDE: Added makefile for VAC 3.6.5
1246 To compile use i.e.: nmake DEBUG=1 CCENV=VAC36
1247 - KERNEL32: Changed VIRTUAL_MapFileA/W
1248 Changed OS2ImageInit from public to protected
1249 - KERNEL32: Added DuplicateHandle to Handle Manager (wasn't working before)
1250 NOTE: Only works for file handles at this time!
1251 The rest still needs to be implemented.
1252 - USER32\NEW: Changed loadres.cpp call to VIRTUAL_MapFileA
1253
1254 99-08-24: Patrick Haller <phaller@gmx.net>
1255 - USER32: added extended Open32 WinX control styles (OS2CTLWX)
1256 - KERNEL32: HandleManager support for memory mapped files
1257 Added FindFirstFileW, FindNextFileW
1258 Bugfix in ExitProcess / iConsoleWaitClose
1259 Bugfix in OS2Heap::OS2Heap (Heap 0 always valid for NT programs?)
1260
1261 99-08-24: Sander van Leeuwen <sandervl@xs4all.nl>
1262 - USER32\NEW: One mutex per type of generic object + mutex protection
1263 of linked list access in win32 classes
1264 - KERNEL32: Implemented VirtualQuery (not yet tested)
1265 VirtualQueryEx calls VirtualQuery, VirtualProtectEx calls
1266 VirtualProtect
1267 NOTE: VirtualQueryEx & VirtualProtectEx can't handle addresses of other
1268 processes
1269 - KERNEL32: Added memory mapped file class (not hooked up to apis or
1270 exception handler yet; just committing my preliminary code)
1271
1272 99-08-23: Sander van Leeuwen <sandervl@xs4all.nl>
1273 - KERNEL32: Dll load order bugfix (PE loader)
1274 - USER32\NEW: Added two dummy exports so comdlg32 will load
1275 NOTE: This is a temporary hack and needs to be changed.
1276 - USER32\NEW: Fix for OSLibWinCreateIcon (supports single icons now)
1277 - KERNEL32: Logging change, now creates a unique logfile for each
1278 process. (multiple win32 apps active -> multiple logfiles)
1279
1280 99-08-23: Patrick Haller <phaller@gmx.net>
1281 - USER32/NEW: partial (not compiling yet) port of DIALOG.C
1282 - USER32: fix: Win32Proc constructor crash (GetClassInfoA(of a Systemclass))
1283
1284
1285 99-08-22: Sander van Leeuwen <sandervl@xs4all.nl>
1286 - OLE32: Changes for updated WINE headers
1287 - OLEAUT32: Created (Wine port: Based on 990815 code)
1288 - KERNEL32: Export HEAP_* string functions in lib
1289 - KERNEL32: Fixed some PE resource dll load bugs
1290 - KERNEL32: Moved CloseLogFile call to after DestroyTIB (fixes crashes
1291 as WriteLog was still called in DestroyTIB & WriteOutProfiles)
1292 - KERNEL32: Added exception handling code for each thread, entrypoint &
1293 TLS callbach handler.
1294 OS2ExceptionHandler (in exceptions.cpp) is registered as the
1295 main exception handler.
1296 NOTE: Still needs to call original win32 exception handler
1297 from OS2ExceptionHandler.
1298 - USER32/NEW: Changed WM_ERASEBKGND handling. Fixes FreeCell background.
1299 (but might not be completely correct)
1300 - INCLUDE\WIN: Added custcntl.h & fixed GetObject definition
1301 - INCLUDE\WIN, WIN\WINE: Added several files, updated OLE headers
1302 - NTDLL: Some changes to make it compile again
1303
1304 99-08-21: Sander van Leeuwen <sandervl@xs4all.nl>
1305 - USER32\NEW: Fixed window class bug. Freecell menu now properly
1306 loaded.
1307 - USER32\NEW: Changed LoadBitmapA/W to load bitmaps internally
1308 (also ported some Wine code for that purpose)
1309 Not correct yet: some of Solitaire's bitmaps look bad
1310 - KERNEL32: Fixed name id lookup bug for PE loader resources
1311 - KERNEL32: AllocFixedMemory bugfix + added Aurora flag to DosAllocMem
1312 - KERNEL32: Close logfile in kernel32 exit list -> last log messages
1313 before crash now properly saved
1314 - PELDR: Corrected makefile
1315
1316 99-08-21: Yuri Dario <mc6530@mclink.it>
1317 - Makefiles: Link with predefined VAC lib (RTLLIB(_O))
1318 Needed for VAC 3.6.5
1319
1320 99-08-20: Sander van Leeuwen <sandervl@xs4all.nl>
1321 - KERNEL32: PE resource loading fixes
1322 - USER32/NEW: Changes to Load* resource apis
1323 - USER32/NEW: Put back LoadBitmap for now
1324 Rewrote LoadIconA/W & LoadCursorA/W + added
1325 extra code to oslib.
1326
1327 99-08-20: Patrick Haller <phaller@gmx.net>
1328 - ODINWRAP: fixed invalid macros
1329
1330 99-08-19: Patrick Haller <phaller@gmx.net>
1331 - ODINWRAP: fixed invalid recursion in ODINFUNCTION0-Debug
1332 - WINMM: odinwrap macros
1333 - TAPI32: odinwrap macros
1334 - MPR: odinwrap macros
1335 - COMDLG32: odinwrap macros
1336 - WNETAP32: odinwrap macros
1337 - WINSPOOL: odinwrap macros
1338
1339 99-08-19: Sander van Leeuwen <sandervl@xs4all.nl>
1340 - KERNEL32: PE loader resource fixes + ConvertNameId bugfix
1341 Added pe2lx conversion code for menus, accelerators,
1342 bitmaps, icons, cursors, icon & cursor groups.
1343 Put back _CreateWin32Exe export in kernel32exp.def
1344 - KERNEL32: Used Odin wrappers for profile apis (mess up FS)
1345 - USER32 & USER32\NEW: Cleaned up icon code
1346
1347 99-08-18: Patrick Haller <phaller@gmx.net>
1348 - NTDLL: tons of new stubs and crt functions
1349 - WNETAP32: tons of new stubs
1350
1351 99-08-18: Sander van Leeuwen <sandervl@xs4all.nl>
1352 - Put back version check in most dlls (except odincrt.dll & peldr.dll
1353 we don't want a kernel32 dependency there)
1354 - PELDR/KERNEL32: Use reserved memory by peldr.dll to store win32 exe
1355 sections. (now loads exes without fixups & low base address)
1356 Added TLS support.
1357 - KERNEL32: Lots of changes for the ring 3 PE loader (not completed)
1358 Store PE header at start of module in memory, module handle
1359 set to image base of module.
1360
1361 99-08-18: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
1362 - KERNEL32: Profile bugfix (line 506) && removed redundant '\r'
1363 (except on line 199)
1364
1365 99-08-17: Sander van Leeuwen <sandervl@xs4all.nl>
1366 - KERNEL32/LZ32: Fixed compilation problems introduced by changes below
1367 - ODINCRT: Rewrote __threadid Clib function to get rid of crashes
1368 (restores OS/2 FS selector before accessing PIB ptr and
1369 puts back original FS selector afterwards)
1370 NOTE: No longer necessary to use ODIN_FS_BEGIN/ODIN_FS_END macros
1371 - DDRAW: Removed ODIN_FS_BEGIN/ODIN_FS_END calls
1372 Fixed bugs in divewrap.h. Incorrect wrappers called themselves
1373 instead of the original Dive apis.
1374
1375 99-08-17: Patrick Haller <phaller@gmx.net>
1376 - LZ32: can't export LZCopy as ID0, changed to alphanumeric export
1377
1378 99-08-16: Sander van Leeuwen <sandervl@xs4all.nl>
1379 - PE loader: Started with rewrite
1380 - ODINCRT: Changed compile & link options
1381 - ODINCRT: Don't export ctordtorInit/Term. These functions must exists
1382 locally for each dll/exe. Fixes crashes in pe loader and
1383 corrupt converted exes generated by pe2lx
1384 - ALL: Makefile changes & initterm.cpp no longer calls c/c++ library
1385 init & termination functions (should only be done in odincrt.dll)
1386
1387 99-08-16: Patrick Haller <phaller@gmx.net>
1388 - SHELL32: integrated Christoph Bratschis SHELL32 stubs
1389 - WSOCK32: odinwrap macros
1390
1391 99-08-16: Christoph Bratschi <cbratschi@datacomm.ch>
1392 - USER32: uitools.cpp update
1393
1394 99-08-15: Christoph Bratschi <cbratschi@datacomm.ch>
1395 - USER32\NEW: controls: wine-990731 update
1396
1397 99-08-14: Christoph Bratschi <cbratschi@datacomm.ch>
1398 - COMCTL32: wine-990731 update
1399
1400 99-08-14: Sander van Leeuwen <sandervl@xs4all.nl>
1401 - INCLUDE\win\windows.h: Include odin.h if __WIN32OS2__ is defined
1402
1403 99-08-13: Sander van Leeuwen <sandervl@xs4all.nl>
1404 - KERNEL32: Export heap functions by ordinal
1405 - src\makefile: compile lz32 before version (dependency)
1406
1407 99-08-12: Patrick Haller <phaller@gmx.net>
1408 - VERSION: enhanced plus odinwrap macros
1409
1410 99-08-11: Patrick Haller <phaller@gmx.net>
1411 - ODINCRT: ordinal exports
1412 - ADVAPI32:odinwrap macros (partially)
1413 - LZ32: odinwrap macros
1414
1415 99-08-10: Sander van Leeuwen <sandervl@xs4all.nl>
1416 - USER32/NEW: Fixed makefile (link with odincrt)
1417
1418 99-08-10: Patrick Haller <phaller@gmx.net>
1419 - LZ32: added preliminary support for independend LZ32 library
1420
1421 99-08-09: Patrick Haller <phaller@gmx.net>, Achim Hasenmueller <achimha@innotek.de>, Markus Montkowski
1422 - ODINCRT: providing a extensible wrapping layer for VAC++ runtime functions
1423 change is non-intrusive for existing source.
1424
1425 99-08-06: Patrick Haller <phaller@gmx.net>
1426 - USER32: added stubs so NT4's WINFILE can load
1427 - SHELL32: added stubs so NT4's WINFILE can load
1428 - NTDLL: added stubs so NT4's WINFILE can load
1429
1430 99-08-05: Patrick Haller <phaller@gmx.net>
1431 - KERNEL32: interactive control over UnhandledExceptionFilter
1432 - KERNEL32: FormatMessageAW fixed. Do not mix ODIN's heap functions with VAC heap functions
1433 - KERNEL32: added WINE-style string functions in Heapstring.cpp
1434 - SHELL3232: RestartDialog @59 stub added. IE2 can load now with NT4's URL.DLL.
1435
1436 99-08-05: Sander van Leeuwen <sandervl@xs4all.nl>
1437 - KERNEL32: Bitmap conversion bugfix; always recalculate bitmap size
1438 (bitmap in donut.exe (ddraw sample) contains wrong size)
1439
1440 99-08-04: Patrick Haller <phaller@gmx.net>
1441 - KERNEL32: fix for filename handling in kernel32/profile
1442 - KERNEL32: fix for PROFILE_CopyEntry in kernel32/profile
1443
1444 99-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
1445 - PE2LX: Bugfix for icon conversion (heap corruption for ra95.exe; as
1446 reported by Patrick Haller)
1447
1448 99-08-04: Patrick Haller <phaller@gmx.net>
1449 - KERNEL32: Heap modification
1450 - KERNEL32: Windows 3 style profile support ported from WINE (removes Open32)
1451
1452 99-08-03: Rene Pronk <R.Pronk@twi.tudelft.nl>
1453 - USER32: Ported DrawTextExA/W & DrawStateA/W
1454
1455 99-07-27: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
1456 - KERNEL32: Implemented GetComputerNameA/W
1457
1458 99-07-25: Sander van Leeuwen <sandervl@xs4all.nl>
1459 - USER32/NEW: Lots of changes; Solitaire displays cards correctly
1460 Status bar correctly drawn
1461 Mouse msg translation still wrong.
1462 Paint not correct.
1463
1464 99-07-25: Sander van Leeuwen <sandervl@xs4all.nl>
1465 - KERNEL32: GetLocateInfoA bugfix
1466 - USER32/NEW: Lots of changes; now Solitaire starts, but draws cards incorrectly
1467
1468 99-07-23: Yuri Dario <mc6530@mclink.it>
1469 - misc: Changes for compilation with VAC 3.6.5
1470
1471 99-07-23: Edgar Buerkle <100566.557@compuserve.com>
1472 - VERSION: VerQueryValueA/W Wine implementation ported
1473
1474 99-07-22: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
1475 - KERNEL32: Complete implementation of GetLocaleInfoA/W
1476
1477 99-07-22: Edgar Buerkle <100566.557@compuserve.com>
1478 - KERNEL32: Fix for OS2GetResource (os2util.cpp)
1479 - PE2LX: Use unique resource id for version resource.
1480 - USER32: MapOEMToRealKey fix
1481
1482 99-07-22: Sander van Leeuwen <sandervl@xs4all.nl>
1483 - DDRAW: Now compiles
1484 - COMCTL32: Create library with correct api names
1485
1486 99-07-21: Edgar Buerkle <100566.557@compuserve.com>
1487 - KERNEL32: Fix for LoadResource; should return pointer to resource data
1488 LockResource just returns the pointer returned by LoadResource
1489
1490 99-07-20: Sander van Leeuwen <sandervl@xs4all.nl>
1491 - USER32/NEW: Added support for window icons and accelerators.
1492 Accelerators don't work yet.
1493 - PE2LX: Save icons in different format (BITMAPINFOHEADER2)
1494
1495 99-07-19: Sander van Leeuwen <sandervl@xs4all.nl>
1496 - KERNEL32: Added method for retrieving converted OS/2 resource
1497 (which will be changed later on)
1498 - USER32/NEW: CreateWindowEx now works and menus are displayed
1499
1500 99-07-17: Sander van Leeuwen <sandervl@xs4all.nl>
1501 - KERNEL32: Exports for getting TEB & THDB added
1502
1503 99-07-15: Sander van Leeuwen <sandervl@xs4all.nl>
1504 - USER32/NEW: Unicode & window handle translation bugfixes
1505
1506 99-07-14: Christoph Bratschi <cbratschi@datacomm.ch>
1507 - USER32/NEW: several bugs fixed, compiles now
1508 CreateWindow doesn't work yet
1509
1510 99-07-13: Sander van Leeuwen <sandervl@xs4all.nl>
1511 - USER32/NEW: *VERY* preliminary/alpha code for Open32 replacement in user32
1512 Compiles, but not tested at all.
1513
1514 99-07-12: Patrick Haller <phaller@gmx.net>
1515 - KERNEL32: various console fixes
1516
1517 99-07-10: Edgar Buerkle <100566.557@compuserve.com>
1518 - USER32: Fixes for CreateWindowExW and several unicode menu apis
1519
1520 99-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
1521 - KERNEL32/PE2LX: Added support for TLS sections
1522 - KERNEL32: Added thread attach/detach messages for dlls
1523 Fixed some bugs, cleaned up code
1524 NOTE: THIS CHANGE BREAKS ALL PREVIOUSLY CONVERTED APPLICATIONS
1525 RECOMPILE ALL DLLS AND CONVERT EVERYTHING AGAIN!!!!!!!!!
1526 THIS CHANGE ALSO BREAKS WIN32K!
1527
1528 99-07-06: Patrick Haller <phaller@gmx.net>
1529 - KERNEL32: major enhancement of handlemanager
1530
1531 99-07-06: Edgar Buerkle <100566.557@compuserve.com>
1532 - PE2LX: Finished support for codepages
1533
1534 99-07-05: Patrick Haller <phaller@gmx.net>
1535 - SHELL32: SheSetCurDrive stub, ...
1536
1537 99-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
1538 - LIB\libconv.def: Added name with '_' appended. (or else Watcom won't
1539 link pe2lx\misc.cpp properly)
1540
1541 99-07-05: Edgar Buerkle <100566.557@compuserve.com>
1542 - PE2LX: Preliminary support for codepages
1543
1544 99-07-05: Patrick Haller <phaller@gmx.net>
1545 - KERNEL32: HandleManager fixes as suggested by Edgar Buerkle
1546
1547 99-07-04: Christoph Bratschi <cbratschi@datacomm.ch>
1548 - PE2LX/USER32: Dialog default font set to WarpSans + fixes
1549
1550 99-07-02: Christoph Bratschi <cbratschi@datacomm.ch>
1551 - PE2LX/USER32: Dialog bugfix for entryfield strings
1552
1553 99-06-30: Christoph Bratschi <cbratschi@datacomm.ch>
1554 - KERNEL32: Unicode changes (unicode.cpp)
1555 lstrcpynA/W (kernel32.cpp
1556 - USER32: LoadStringA unicode conversion bugfix
1557 - USER32: Changed SystemParameterInfo for default font (now 9.WarpSans)
1558
1559 99-06-30: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
1560 - WINMM: Implemented remaining joystick apis + bugfixes
1561
1562 99-06-29: Patrick Haller <phaller@gmx.net>
1563 - KERNEL32: GetLocaleInfoA bugfix (lang.cpp)
1564
1565 99-06-29: Przemysˆaw Dobrowolski <dobrawka@asua.org.pl>
1566 - WINMM: Implemented most of the joystick apis
1567
1568 99-06-28: Christoph Bratschi
1569 - USER32: AsciiToUnicodeN bugfix (unicode.cpp)
1570
1571 99-06-28: Sander van Leeuwen
1572 - USER32: Get/SetWindowLongA bugfix for dialog controls
1573
1574 99-06-27: Sander van Leeuwen
1575 - USER32: Message handler updates & lots of bugfixes
1576 - USER32: Fix for GetWindowLongA, if Open32 returns 0xffff it really
1577 means 0xffffffff -> fixes Winhlp32 buttons.
1578 - USER32: Fixed bug when changing window procedures for dialog box
1579 controls
1580
1581 99-06-26: Sander van Leeuwen
1582 - USER32: Changes for message spy & several message handler changes
1583 - USER32: Restore win32 tib in window msg callback
1584 - KERNEL32/include: Restore OS/2 tib on entering Open32 or OS/2 apis
1585 - KERNEL32/lang.cpp: Bugfix for GetLocaleInfoA (if buf ptr == null,
1586 only return size of memory block required to hold info)
1587
1588 99-06-25: Achim Hasenmueller
1589 - Finally fixed changelog date format to be compliant with
1590 the official EU date format :)
1591
1592 99-06-25: Christoph Bratschi
1593 - USER32: GetSysColorPen bugfix (syscolor.cpp)
1594
1595 99-06-24: Patrick Haller
1596 - SHELL32: partial port form WINE
1597
1598 99-06-24: Edgar Buerkle
1599 - KERNEL32: Implemented GetLocaleInfoA/W
1600
1601 99-06-24: Sander van Leeuwen
1602 - include\winos2def.h: Changed OS/2 apis to use wrappers
1603 (FS save/restore) and added DosQueryCtryInfo
1604
1605 99-06-23: Patrick Haller
1606 - Fixed date format in changlog .g.
1607 - NTDLL: a dozen c runtime functions added
1608 - USER32: IsHungAppWindow dummy added
1609 - SHELL32: few more APIs added
1610 - KERNEL32: HandleManager, Console, fixes
1611 - COMDLG32: basic unicode support added, thou broken somehow
1612 - source code splitups and beautification ;-)
1613
1614 99-06-23: Achim Hasenmueller
1615 - ported latest WINE fixes and additions for comctl32. Changes
1616 involve better undoc. DSA APIs, right colors for the tab control,
1617 many improvements for the listview...
1618
1619 99-06-21: Achim Hasenmueller
1620 - ported latest WINE DrawEdge code and moved everything to the
1621 new file src/user32/uitools.cpp
1622
1623 99-06-21: Sander van Leeuwen
1624 - include\os2wrap.h, removed calling convention
1625
1626 99-06-21: Christoph Bratschi
1627 - COMCTL32: Progress bar finished (progress.c, USER32 bugs to fix)
1628 - COMCTL32: Trackbar finished (trackbar.c)
1629
1630 99-06-20: Sander van Leeuwen
1631 - KERNEL32: Call HMInitialize from initterm, not winexe object creation
1632 - KERNEL32: Added comctl to list of system dlls (windll.cpp)
1633 - KERNEL32: Fixed dll detach (windll.cpp) for converted win32 dlls
1634 - KERNEL32: Module name detection (windll.cpp)
1635 - KERNEL32: Activated Win32 TIB code; a selector + memory is allocated
1636 for the main thread and every thread created.
1637 When it's completed, it should fix several problems due to
1638 differences between OS/2's TIB and Win32's TEB.
1639 - COMCTL32: Fixed crash on exit (moved unregister of class into exit list handler)
1640 - USER32: Changed bugfix (WS_CLIPCHILDREN) for winhlp32 (same as Wine now)
1641 - USER32: Fixed bug in wndproc.cpp (release build only)
1642 - USER32: Added preliminary support for parent notification
1643
1644 99-06-19: Sander van Leeuwen
1645 - ALL (except dsound/ddraw): Include <os2wrap.h> instead of <os2.h>
1646 - KERNEL32: Changes for win32 TEB (not active)
1647
1648 99-06-07: Sander van Leeuwen
1649 - Removed unecessary files
1650 - Modified os2win.h to save FS selector before calling Open32 api
1651 and restoring it afterwards.
1652 - Renamed all .C files (except comctl32) to .CPP and fixed compiler errors
1653 - GDI32: Fixed SetDIBitsToDevice bugfix (palette size)
1654 - USER32: Fixed RegisterSystemClasses
1655
1656 99-06-07: Achim Hasenmueller
1657 - Added comctl32, mostly untested includes all controls, some undocumented
1658 APIs missing
1659 - Added internal GetSysColorPen() to user32 - handy API used in WINE
1660 Modified syscolor.cpp to support new Win98 colors and create pens
1661
1662 99-06-06: Sander van Leeuwen
1663 - Bugfixes in VirtualAlloc (KERNEL32), GetScrollPos & RegisterSystemClasses (USER32)
1664 as reported on mailinglist by Edgar Buerkle.
1665 Also FindResourceA/W.
1666
1667 99-06-01: David Raison
1668 - OLE32: Changed everything to make it compile with the new headers
1669 - include/win/ole.2 - line 170
1670 - include/wine/win/obj_oleview.h - line 32 & 36
1671
1672 99-05-23: Sander van Leeuwen
1673 - ADVAPI32: Fixed Open32 bugs in RegOpenKeyA (set return key to 0 when failed)
1674 Fixed key definition conflict in convertkey.
1675 - KERNEL32: Fixed exception handler, don't continue after process termination
1676 exception! (fixes annoying exitlist hangs)
1677
1678 99-05-19: Sander van Leeuwen
1679 - KERNEL32: Corrected wrong export for HeapSize (reported by Vit Timchishin)
1680
1681 99-05-15: Sander van Leeuwen
1682 - Fixed a number of bugs introduced during the Wine header update
1683 - KERNEL32: Added high/low fixup support for pe loader
1684
1685 99-05-13: Sander van Leeuwen
1686 - Updated USER32
1687 - Fixed unicode apis in USER32
1688 - Added .def files for ADVAPI32, COMDLG32, GDI32, KERNEL32 & USER32 that
1689 export all apis with the correct names. (_apiname@nrofparameterbytes)
1690
1691 99-05-12: Sander van Leeuwen
1692 - Finished KERNEL32
1693 - Updated WINMM
1694
1695 99-05-10: Vince Vielhaber
1696 - Rewrote WSOCK32 for Wine headers
1697
1698 99-05-08: Sander van Leeuwen
1699 - Updated CAPI32, COMDLG32 & GDI32, MPR, NTDLL, TAPI32, WINSPOOL, WNETAP32
1700 for new headers
1701 - Started with KERNEL32 changes (75% done)
1702 - Made basic changes to OLE32 for new headers, but still tons of errors
1703 - Fixed some unicode apis in GDI32
1704
1705 99-05-04: Sander van Leeuwen
1706 - Stripped os2win.h and put it in include directory
1707 - WINE header files in include\win
1708 (some modified for IBM VAC)
1709 - All Open32 apis have 'O32_' as prefix, Open32 specific declarations
1710 are appended with _O32.
1711
1712 99-05-01: Sander van Leeuwen
1713 - Changed makefile structure:
1714 nmake DEBUG=1 builds debug version
1715 nmake builds release version
1716
1717 99-04-11: Sander van Leeuwen
1718 - Everything except user32 & kernel32: copyrights added to most files
1719 Moved a few header files in \include
1720 - Fixed import problem in peldr (include\winimage.h), SetFullPath must
1721 be a virtual method.
1722
1723 98-10-26: Sander van Leeuwen
1724 - OLE32: CoInitialize takes one parameter, not 0
1725
1726 98-10-11: Sander van Leeuwen
1727 - KERNEL32: except.asm Wrong calling convention for SetExceptionChain
1728 - KERNEL32: exceptions.cpp/wprocess.cpp SetExceptionChain(-1) instead of SetExceptionChain(0)
1729
1730 98-09-28: Sander van Leeuwen
1731 - PE2LX: icon.cpp: palette only for <= 8 bpp
1732 - PE2LX: icon.cpp: check if image size in bmp header is correct before using it
1733
1734 98-09-25: Sander van Leeuwen
1735 - PE2LX: Don't fail if an exe/dll doesn't contain any imports (pe.cpp:ProcessImports)
1736
1737********************************************************************************
1738***** Release 0.03/4
1739********************************************************************************
1740 98-09-15: KSO
1741 - WIN32K: pe2lx\misc.cpp changes
1742
1743 98-09-13: Sander van Leeuwen
1744 - KERNEL32: windll.cpp: fixed bug with szModule not being initialized
1745 - PE2LX: pe.cpp: Only read first 1 MB for huge files. (as they are most
1746 likely InstallShield archives; exe appended with
1747 installation data)
1748
1749 98-09-12: Sander van Leeuwen
1750 - WSOCK32: Changed fd_set to Wfd_set or else it won't compile over here
1751 - KERNEL32: Winimage.cpp, extra checks added
1752 - KERNEL32: OS2GetModuleFileName bugfix
1753 - INCLUDE/MISC.H: Error printf that prints to stdout (more reliable than
1754 a logfile)
1755 - GDI32: GetDeviceCaps -> NT returns -1 when using 16 bits colors, NOT 65536!
1756 - GDI32: CreateDIBSection -> StarCraft uses bitmap with negative height ->
1757 flip image when blitting
1758 - GDI32: DIBSection ctor: bug in BITMAPINFO2 malloc
1759 - GDI32: BitBlt: (dibsection) HDC == HPS (thank you, IBM!)
1760
1761 98-09-02: Sander van Leeuwen
1762 - KERNEL32/USER32: Split up code
1763 - USER32 (/new): Started with new class & window managment code
1764 (not compiled nor tested, so don't change it)
1765
1766 98-09-01: Patrick Haller
1767 - WSOCK32: Circular linker dependency removed
1768
1769 98-08-31: kso
1770 - KERNEL32: changed lfile.c to use OS2CreateFile,OS2CloseHandle,.... as
1771 NT does. Notepad (W95) is now working better.
1772 - KERNEL32: fixed a open32 bug (or win32 feature) - WriteFile with
1773 nrbytes = 0 is equal to a SetEndOfFile(..);
1774
1775 98-08-17: Sander van Leeuwen
1776 - KERNEL32: Changed LoadLibraryA(W/ExA/ExW) to try to load the dll
1777 directly first and if that fails, load it manually.
1778
1779 98-08-15: Sander van Leeuwen
1780 - DDRAW: LOTS of changes,additions and fixes
1781 (ddex1-ddex5 DirectX SDK samples work(ed) + Quake 2 in
1782 DirectDraw mode)
1783 - DSOUND: Skeleton code extended
1784
1785 98-08-13: Sander van Leeuwen
1786 - PE2LX: Replaced stack page removal code; (adjusted GetNrPages instead)
1787
1788 98-08-13: KSO:
1789 - PE2LX: Borland bugfixes
1790
1791 98-08-08: Sander van Leeuwen
1792 - pe2lx (pe.cpp), call SetNrOfExports(0) for dlls without exports
1793 to set the module name in the resident name table
1794 (otherwise converted dll will not load)
1795 - Version resource apis work now
1796 - LocalReAlloc bugfix, notepad assumes it returns the same
1797 address when the new size is smaller than the old one.
1798
1799 98-08-03 KSO:
1800 - pe.cpp: line 600 - added OS2Exe to the parameterlist
1801 - bitmap.cpp: replace file - much.
1802 - bitmap.h: replace file - typo (BitMap to Bitmap)
1803 - icon.h: replace file - #define BI_*
1804
1805 98-07-23: Knut Osmundsen
1806 - PE2LX: Borland exe changes (import stuff)
1807
1808 98-07-18: Sander van Leeuwen
1809 - KERNEL32/PE2LX: Changed version checks; version nr is put into the
1810 converted exe/dll as a parameter to one of the kernel32
1811 entry points
1812 - USER32: Changed class managment code
1813 - USER32: Removed all SYNCPAINT stuff as it breaks many apps
1814 - USER32: Removed in CreateWindowExA that checks for values of x, y, nHeight & nWidth
1815 (this broke generic.exe, notepad.exe and probably many others)
1816 - USER32: Finished GetMenuStringW (MSPaint), not working right though
1817 it should return 'Recent File', but returns 'Decent File'
1818 Well, whatever.
1819 - VERSION/KERNEL32/PE2LX: Version resource API implemention started
1820 - PE2LX: Increased some fixup limits to convert dynhgi35.dll
1821 - KERNEL32: AsciiToUnicode fixed (only terminate with one 0; doing
1822 it twice corrupts the heap as our stuff allocates exactly
1823 enough for string + 0 terminator)
1824
1825 98-07-14: Sander van Leeuwen
1826 - KERNEL32: Changed OS2GetProcAddress to call the ordinal or name getApi
1827 method
1828
1829 98-07-13: Patrick Haller
1830 - USER32: Unicode fix for wvsprintfW "%s" -> "%ls"
1831 - USER32: fix in Win32WindowProc destructor when "window" becomes NULL
1832 - ADVAPI32: RegConnectRegistry for connection to local machine
1833
1834 98-07-13: Patrick Haller
1835 - KERNEL32: Unicode fix that garbled CommandLineToArgv and others
1836
1837 98-07-12: Patrick Haller
1838 - NTDLL: new functions in NTDLL (-> critical sections)
1839 - SHELL32: few new stubs in SHELL32
1840 - GDI32: fix in GDI32\DIBSECT\CreateDIBSection for M$ Backup
1841 - USER32: experimental fix (CS_SYNCPAINT) for WinHlp32 to
1842 display navigation buttons, but crashes SOL.EXE :(
1843
1844 98-07-10: Patrick Haller
1845 - stubs for NETAPI32 100%
1846
1847 98-07-09: Patrick Haller
1848 - stubs for Winspool 100%
1849
1850 98-07-01 Joel Troster
1851 - KERNEL32: update to nameid.cpp
1852
1853 98-06-07 Joel Troster
1854 - WINMM: WaveOpen bugfix
1855
1856 98-06-07 Felix Maschek
1857 - CAPI32: bugfix
1858
1859 98-06-15: Patrick Haller
1860 - GDI32: stubs for all missing functions
1861 - ADVAPI32: stubs for all missing functions
1862 - USER32: implementation of some real functions
1863 some unknown functions stubbed (IDA/2)
1864
1865 98-06-14: KSO
1866 - GDI32: Stubs for Office 97
1867 - PE2LX: Formatted output
1868 - ADVPI32: Stubs for Office 97
1869 - VERSION: Stubs for Office 97
1870
1871 98-06-12: Patrick Haller
1872 - NTDLL: ported over the NTDLL code from WINE, subject to the GNU Copyleft
1873 some applications open this module explicitly
1874 - KERNEL32: few fixes to Unicode handling
1875 - KERNEL32: console window sizing (still buggy) and property fixes
1876 - KERNEL32: stubs for all missing functions
1877 - GDI32: bugfix for DIB allocation (MS Paint)
1878 - WINMM: functions for FOURCC handling
1879 - PE2LX: CURSOR.CPP: hotspot.y is upside down (fixed for Winhlp32)
1880 - PE2LX: DIALOG.CPP: combobox style translation CBS_ fixed
1881 - PE2LX: DIALOG.CPP: style translation for WINES_MULTILINE
1882 causes MLE control to be generated.
1883 Experimental.
1884 - KERNEL32: WINDLL.CPP: fixed endless loop in Win32DLL::StripPath()
1885
1886 98-05-25: Patrick Haller
1887 - KERNEL32: Added few NTDLL stubs, mainly for support of MSACM32/NT
1888 - KERNEL32: Resource fix
1889
1890 98-05-03: Joel Troster
1891 - WINMM: Stubbed most of the remaining mmedia apis
1892
1893 98-04-28: Patrick Haller
1894 - KERNEL32: Console fixes
1895 - KERNEL32: Console properties (partially)
1896 - KERNEL32: Handlemanager fixes
1897 - KERNEL32: OS2iGetModuleName fixes
1898
1899********************************************************************************
1900***** Release 0.02
1901********************************************************************************
1902
1903 98-04-05: Patrick Haller
1904 - KERNEL32: Resource bugfix
1905
1906 98-03-30: Joel Troster
1907 - WINMM: midiStream* stubs added
1908
1909 98-03-30: Sander van Leeuwen
1910 - PE2LX: Set console flag when exe has no resources
1911
1912 98-03-27: Joel Troster
1913 - WINMM: Midi changes/bugfixes, mci* api stubs added
1914 - GDI32: SetObjectOwner stub added
1915
1916 25-03-98: Sander van Leeuwen
1917 - KERNEL32: Several changes in resource code
1918
1919 19-03-98: Felix Maschek
1920 - KERNEL32: Comm stubs added
1921
1922 19-03-98: Sander van Leeuwen
1923 - KERNEL32: Pop up a dialog box when a missing api is called
1924 - KERNEL32: dll bugfix
1925 - KERNEL32: CreateProcessA/W fix
1926 - KERNEL32: GetProcAddr completed for PE loader & PE2LX
1927
1928 19-03-98: Peter Fitzsimmons
1929 - created include\version.h
1930 - changed pe2lx\lx.cpp (call SetVersion())
1931 - changed pe2lx\misc.cpp (code for SetVersion(), setea())
1932 - changed pe2lx\misc.h (add prototypes)
1933 - changed pe2lx\pe.cpp (moved DosClose() up a few lines, so DosSetPathInfo() could write to the file)
1934 - changed pe2lx\makefile \
1935 - changed pe2lx\makefile.wat / Build setver.exe, getver.exe. I didn't copy
1936 these exe's to ..\bin in purpose; they
1937 aren't supposed to go to end users.
1938 - Added one line ("..\server $@") to all makfiles
1939
1940 - added getea() to kernel32\os2util.c
1941 - added a few lines in kernel32/wprocess.cpp/RegisterDll()
1942
1943 - Edit all initterm.c's to remove that rand() crap (that is from a
1944 sample project!). Also added new version check to each. Also #include "misc.h"
1945
1946 - wsock32: edited makefile to remove reference to ..\kernel32\misc.obj and
1947 replace with kernel32.dll.
1948
1949 - src\makefile: build kernel32 before wsock
1950 - src\kernel32\makefile: remove reference to wsock32.lib
1951 - src\kernel32\network.cpp: remove call to wsock32
1952
1953 16-03-98: Joel Troster
1954 - GDI32: Added SetObjectOwner stub
1955
1956 15-03-98: Joel Troster
1957 - WINMM: RTMIDI dependency removed
1958
1959 15-03-98: Sander van Leeuwen
1960 - All dlls, C++ init+termination call added to initterm.c
1961 - KERNEL32: Icon conversion bugfix
1962 - KERNEL32: Removed reroute of exe reading
1963 - KERNEL32: Major rewrite of dll & exe handling including
1964 LoadLibary(Ex)A/W, CreateProcessA/W, GetModuleFileNameA/W,
1965 FreeLibrary & GetCommandLineA/W
1966 Side effect: Crash at Quake 2 exit fixed
1967
1968 - KERNEL32: Additional code for PE loader
1969 - PE: Created OS/2 ring 3 PE loader
1970 syntax: pe win32exe commandline
1971 Reads win32exe & all imported dlls, calls all dll entry points and
1972 finally calls the exe entry point.
1973 TODO: No fixups and low startup address
1974 TODO: Resources
1975 TODO: CreateProcess doesn't work right
1976
1977 13-03-98: Sander van Leeuwen
1978 - KERNEL32: Dll unloading fixed
1979
1980 13-03-98: Peter Fitzsimmons
1981 - KERNEL32: Fixed CompareStringA/W
1982
1983 12-03-98: Joel Troster
1984 - WINMM: Stubbed all the mixer APIs and updated support for MidiMapper
1985
1986 10-03-98: Sander van Leeuwen
1987 - WSOCK32: WSAStartup fix and ioctl addition
1988 (Quake 2 Multiplayer working)
1989 - KERNEL32: Resource lookup bug fixed
1990
1991 10-03-98: Joel Troster
1992 - KERNEL32: SetThreadLocale added
1993
1994 09-03-98: Patrick Haller
1995 - KERNEL32: Fix in GetStdHandle within HandleManager
1996
1997 - KERNEL32: Console APIs completed, input and output is complete,
1998 however not thoroughly tested, SHORT 0.98D is working.
1999 Codepage support, Unicode support missing.
2000 I'm working on cosmetics and properties dialog.
2001
2002 - EXECHECK: tool to check executables for convertibility via pe2lx
2003 and keeping track of our APIs, as well as imported/exported
2004 functions of executables (PE import is currently implemented)
2005
2006 09-03-98: Sander van Leeuwen
2007 - KERNEL32: Put dll & exe apis in wprocess.cpp
2008 - KERNEL32: Reroute file io from own exe to original
2009
2010 08-03-98: Joel Troster
2011 - KERNEL32: Unicode changes (lstrcatW, lstrcmpW, lstrcpyW lstrcpynW)
2012 - WINMM: Unicode midi apis added to .def file
2013
2014 08-03-98: Sander van Leeuwen
2015 - WINMM: Aux* apis implemented (not tested and not 100% correct)
2016 - include: added mmddk.h from win95 ddk
2017
2018 07-03-98: Peter Fitzsimmons
2019 - Added KERNEL32.GetSystemDefaultLangID() -- I copied GetUserDefaultLangID, which
2020 always returns "US ENGLISH".
2021 (NOTE: Already added)
2022 - Added ADVAPI32.ReportEventA(). Stub.
2023 - Added ADVAPI32.OS2SetSecurityDescriptorDacl(). Stub that returns ERROR.
2024 - Added ADVAPI32.* a bunch more stubs.
2025
2026 07-03-98: Sander van Leeuwen
2027 - KERNEL32: Implemented Local* memory apis with new heap
2028 (in win32 you can mix Heap and Local apis)
2029 - KERNEL32: Corrected key mapping bugs for arrow, insert/del/home/end
2030 page up/down keys.
2031 Doesn't work 100% right yet. (strafing in Quake = alt-arrow)
2032
2033 06-03-98: Sander van Leeuwen
2034 - WINMM: Added WaveOutGetNumDevs and corrected the calling
2035 convention for several apis (WIN32API, not WINAPI)
2036 - KERNEL32: Added GetSystemDefaultLangID and moved several
2037 language apis to lang.cpp
2038 - KERNEL32: Added EnumSystemLocalesA/W (US English only)
2039 - PE2LX: command line option change: pe2lx win32file > logfile
2040 Now makes a backup copy of the win32 file and creates
2041 an OS/2 version with the same name
2042
2043 05-03-98: Joel Troster
2044 - KERNEL32: Use OS/2 unicode apis
2045 - USER32: Use OS/2 unicode apis
2046
2047 04-03-98: Sander van Leeuwen
2048 - KERNEL32: Use OS2gethostname (wsock32.dll) instead of gethostname
2049
2050 03-03-98: Knut Osmundsen
2051 - KERNEL32: VirtualAlloc bugfixes & high memory support (SMP)
2052
2053 03-03-98: Patrick Haller
2054 - PECHECK: Initial code for pecheck.exe
2055
2056 03-03-98: Joel Troster
2057 - KERNEL32: Stubs added for Virtual(Un)Lock
2058 - WINMM: Unicode midi apis added, MIDIMAP faked, some bugs fixed
2059
2060 03-03-98: Sander van Leeuwen
2061 - KERNEL32: Fixed logbuffer overflow with strlen WriteLogs
2062 - KERNEL32: Use tcp32dll instead of pmwsock
2063 - PE2LX: Fixed memory corruption in icon.cpp
2064
2065 02-03-98: Sander van Leeuwen
2066 - KERNEL32: kernel32.c -> kernel32.cpp
2067 - KERNEL32: Merged exception logging with my latest code
2068 - include: win32type.h
2069 - WSOCK32: Removed pmwsock.lib from makefile
2070
2071 01-03-98: Patrick Haller
2072 - KERNEL32: Extensions to the exception handler (logging)
2073 - KERNEL32: HandleManager for pseudo-devices (CONIN$,CONOUT$,etc)
2074 - KERNEL32: Hooks for HandleManager
2075 - KERNEL32: Very early console support for stdout is there ...
2076 Console also has context menue.
2077********************************************************************************
2078***** Release 0.01
2079********************************************************************************
2080 28-02-98: Sander van Leeuwen
2081 - DDRAW: Initial work for Direct3D
2082 - KERNEL32/PE2LX, Changes for console applications (flag)
2083 - KERNEL32: Kill process when a fatal exception occurs
2084 (prevents some kind of eternal loop in OS/2; probably due to
2085 invalid exception records or difference in exception handler
2086 calling convention)
2087 - KERNEL32: Added a try/catch statement around the dll exit list
2088 processing in ExitProcess. Seems to cure the trap
2089 at exit.
2090
2091 27-02-98: Patrick haller
2092 - MPR: stubs for all documented MPR functions,
2093 should be complete now
2094
2095 26-02-98: Patrick haller
2096 - USER32: stubs for all documented USER32 functions,
2097 should be complete now
2098 - USER32: Windows95's SHELL32.DLL requires a few undocumented functions
2099
2100 24-02-98: Joel Troster
2101 - WINMM: Midi working
2102
2103 24-02-98: Sander van Leeuwen
2104 - KERNEL32: Exit list changes; terminate all dlls right before
2105 ExitProcess or in kernel32 exitlist in case of a trap
2106 (prevents unkillable processes in most cases)
2107
2108 23-02-98: Joel Troster
2109 - KERNEL32: PMPrintf version of WriteLog added
2110
2111 22-02-98: Sander van Leeuwen
2112 - ALL DLLs: Call C/C++ lib cleanup proc in exit list
2113 - PE2LX: Use exit lists in converted win32 dlls to terminate them
2114 - WINMM: Remove test code in timer emulation (multiplied time by 10)
2115 - KERNEL32: Release winmod objects properly
2116 - KERNEL32: Call dll exit proc in FreeLibrary
2117
2118 21-02-98: Sander van Leeuwen
2119 - KERNEL32: VirtualProtect size change to include all pages
2120 referenced
2121
2122 19-02-98: Sander van Leeuwen
2123 - PE2LX: Change order of dlls in import module name table
2124 - KERNEL32: Don't call the C/C++ lib cleanup procedure at
2125 dll termination
2126
2127 18-02-98: Joel Troster
2128 - WINMM: Midi changes, wave in/out stubs added
2129
2130 16-02-98: Sander van Leeuwen
2131 - KERNEL32: Heap bugfix
2132
2133 16-02-98: Joel Troster
2134 - WINMM: Midi updates
2135
2136 15-02-98: Sander van Leeuwen
2137 - KERNEL32: Changed heap allocation again. (now uses malloc/free)
2138 - KERNEL32: QueryPerformanceFrequency/Counter uses DosTmrQueryTime/
2139 DosTmrQueryFreq now, so the normal xf86sup.sys can
2140 be used.
2141
2142 11-02-98: Sander van Leeuwen
2143 - MPR: Changed/Corrected ordinals
2144
2145Mon 98-02-09 Peter Fitzsimmons
2146 - lx.cpp -- put in check for MAX_SECTIONS (was bombing out in one
2147 of "visio technical"'s dlls.
2148 - lx.cpp increase MAX_SECTIONS (lx.h) from 16 to 32 (where'd the
2149 original value come from?).
2150 - kernel32.c: added stub for FlushInstructionCache()
2151 - kernel32.c: added stub for OS2GetPrivateProfileSectionA()
2152
2153 - advapi32: GetUserNameA() stub. Always says a person named
2154 "USER" is logged on.
2155
2156 - MPR: WNetGetConnection(). NEEDS PROPER ORDINAL IN *.def file.
2157
2158 9-02-1998: Joel Troster
2159 - USER32: Added Set/GetDefaultMenuItem (stub)
2160
2161 7-02-1998: Sander van Leeuwen
2162 - KERNEL32/WINMM: Added VMutex to KERNEL32 (imported by WINMM)
2163 - KERNEL32: New heap implementation (heap.cpp & os2heap.cpp)
2164 - KERNEL32: Replace exception handler for each new thread
2165 - KERNEL32: Set previous exception handler to 0 instead of -1
2166 (fixes endless exception handler calls)
2167 - Added macro dprintf & dassert to include\misc.h (no more need
2168 for #ifdef DEBUG's)
2169
217031-01-1998: Sander van Leeuwen
2171 - USER32: Fixed two bugs in CreateWindowExA/W
2172 - WINMM: Fixed wave playback problem
2173
217418-01-1998: Sander van Leeuwen
2175 - GDI32: Changed GetDIBColor & SetDIBColor
2176 - GDI32: Fixed CreateDIBSection
2177 - Quake 2 working in a window!
2178
217917-01-1998: Sander van Leeuwen
2180 - WINMM: Waveout working, Quake 2 WITH sound now!
2181 - GDI32: Implemented GetDIBColor & SetDIBColor
2182
218311-01-1998: Sander van Leeuwen
2184 - KERNEL32: Exception handler fix
2185 - WINMM: Started with WaveOut implementation
2186
218711-01-1998: Felix Maschek
2188 - TAPI32: Fixes
2189
219010-01-1998: Sander van Leeuwen
2191 - Changes to makefile and wsock32.c to make it compile with VAC
2192 - VirtualAlloc bugfix (reserve)
2193 - Dialog fix (font name)
2194 - WINMM now uses mmsystem.h from win32 SDK
2195
219610-01-1998: Chris McKillop
2197 - New build tree
2198
219910-01-1998: Vince Vielhaber
2200 - Winsock32 changes
2201
220231-12-1997: Sander van Leeuwen
2203 - Remove all 'OS2' strings from imports/exports (dlls/pe2lx)
2204
220528-12-1997: Sander van Leeuwen
2206 - KERNEL32: Code to allow IO in ring 3 added (xf86sup.sys)
2207 Set environment variable WIN32_IOPL2 to enable this
2208
2209 - KERNEL32: Fixed GetStartupInfoA/W (WINE)
2210 - GDI32: Added CreateDIBSection from Wine (not complete)
2211 - Lots of stubs added
2212 - Almost got Quake II running....
2213
221423-12-1997: Felix Maschek
2215 - CAPI2032: Complete implementation of CAPI
2216
221720-12-1997: Felix Maschek
2218 - TAPI32: Stub dll
2219
222020-12-1997: Sander van Leeuwen
2221 - KERNEL32: Bug in winmod.cpp
2222 - KERNEL32: Added code for exception handling (not fool proof)
2223 - KERNEL32: Fixed HeapCreate (now reserves 32 MB instead of 64 kb)
2224 - KERNEL32: Catch FPU exception, mask fpu exceptions, fix stack and continue execution
2225 - PE2LX: Removed stack size & base switch
2226 - WINMM: Added joyGetPos stub
2227
222814-12-1997: Sander van Leeuwen
2229 - KERNEL32: Added QueryPerformanceFrequency, QueryPerformanceCounter
2230 - USER32: Added some stubs
2231 - GDI32: Added some stubs
2232 - WINMM: Added some stubs
2233 - WNETAP32: New (NETAPI32)
2234 - PE2LX: Change module import name NETAPI32 to WNETAP32 (name conflict with OS/2 NETAPI32)
2235 - PE2LX: Cut long dll names to 8 chars
2236 - MPR: Added WNetGetUserA stub
2237
223831-11-1997: Sander van Leeuwen
2239 - KERNEL32: Fixed GetEnvironmentStringsW
2240 - KERNEL32: Added DeviceIOControl (devio.c, map.c, iccio.asm; last two from XFree86 driver src)
2241 - KERNEL32: Changed CreateFile to open an OS/2 driver if required
2242 - Last two changes for win32 Glide dll.
2243
2244 - Fixed window creation (wndproc.cpp), Open32 isn't sending WM_NCCREATE msgs!
2245 - Filter out CBS_OWNERDRAWFIXED & CBS_OWNERDRAWVARIABLE combobox styles
2246 in CreateWindowExA/W (not finished)
2247 - Added FormatMessageA/W from Wine (kernel32)
2248 - USER32:
2249 - Fixed GetSystemParameterInfoA/W, SPI_GETNONCLIENTMETRICS/SPI_SETNONCLIENTMETRICS
2250 (ConvertFontAW/ConvertFontWA macros)
2251 - Progress comclt32 class working
2252 - ADVAPI32, fixed:
2253 - RegEnumKeyW
2254 - RegEnumKeyExW
2255 - RegEnumValueW
2256 - RegQueryInfoKeyW
2257 - RegQueryValueW
2258
2259 - USER32:
2260 - Fixed DrawEdge (borrowed from Wine)
2261 - Added ChangeMenuA/W (borrowed from Wine)
2262 - Fixed some color problems
2263 - Trackbar win32 SDK example working (toolbar comctl32 class)
Note: See TracBrowser for help on using the repository browser.