source: trunk/ChangeLog-2000@ 3485

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

* empty log message *

File size: 77.6 KB
Line 
1 /* $Id: ChangeLog-2000,v 1.3 2000-05-02 20:54:51 sandervl Exp $ */
2
3 2000-04-30: Patrick Haller <phaller@gmx.net>
4 - ODINWRAP: added profiling support. The odin wrapper macros now
5 can measure function calls, this is the cumulative
6 method call time with 838ns accuracy (tick unit).
7
8 2000-04-30: Sander van Leeuwen <sandervl@xs4all.nl>
9 - KERNEL32: LocalFlags fix (low byte = lock count, hight byte (of low word) = memory flags)
10 LocalGetFlags, LocalLock & LocalUnlock now check if the
11 pointer is larger than 3 GB. Some apps calls these functions
12 with GDI object handles.
13 - OLEAUT32: Don't create logfiles in release build
14
15 2000-04-29: Yuri Dario <mc6530@mclink.it>
16 - USER32: Bugfix for owner of windows (set to owner instead of parent now)
17
18 2000-04-29: Sander van Leeuwen <sandervl@xs4all.nl>
19 - USER32/KERNEL32: Added selectable logging for level 2 dprintfs.
20
21 - USER32: Commented out default x & y position code
22 (FCF_SHELLPOSITION no longer works)
23 -> fixes menu & toolbars in MS Word 97
24
25 - KERNEL32: Added windows directory override again
26 (NOTE: for developers *ONLY*; DO NOT USE IT)
27 [DEVDIRECTORIES]
28 WINDOWS=drive:\path
29 Default System directory is kernel32 path
30 (with new install program: x:\odin\system32)
31 Default Windows directory is parent of System Directory
32 (with new install program: x:\odin)
33 NOTE: This assumption could break current installs
34 Will be fixed in upcoming WarpIn installation distributions
35
36 Changed InitSystemAndRegistry:
37 InitSystemAndRegistry creates:
38 - WINDOWSDIR\SYSTEM
39 - WINDOWSDIR\AppData
40 - WINDOWSDIR\Cache
41 - WINDOWSDIR\Cookies
42 - WINDOWSDIR\Desktop
43 - WINDOWSDIR\Favorites
44 - WINDOWSDIR\Fonts
45 - WINDOWSDIR\History
46 - WINDOWSDIR\NetHood
47 - WINDOWSDIR\My Documents
48 - WINDOWSDIR\PrintHood
49 - WINDOWSDIR\Recent
50 - WINDOWSDIR\SendTo
51 - WINDOWSDIR\Start Menu
52 - WINDOWSDIR\Start Menu\Programs
53 - WINDOWSDIR\Start Menu\Programs\Startup
54 - WINDOWSDIR\ShellNew
55 - and a minimal system registry
56
57 - TOOLS\INSTALL: WarpIn install script + small install program
58 that calls kernel32 export (InitSystemAndRegistry)
59
60 - TOOLS\WRC: Forgot to add change in preproc.c (ifdef)
61 (shouldn't really matter though)
62
63 2000-04-27: David Raison <djr@lemur.co.uk>
64 - OLE32/NEW: Work-in-progress on adding apartment handling.
65 Added here for backup until ready for release.
66
67 2000-04-27: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
68 - tools/DailyBuild: Checked in the scripts used for the daily build.
69
70 2000-04-27: Achim Hasenmueller <achimha@innotek.de>
71 - put back new wrc.exe, provide workarounds in
72 header files, old one breaks comdlg32
73 TODO: find bug in new wrc and really fix it
74
75 2000-04-26: David Raison <djr@lemur.co.uk>
76 - INCLUDE/WIN: Added RPC_E_* codes to winerror.h
77 - OLE32: Fixed StringFromGUID2
78
79 2000-04-25: Achim Hasenmueller <achimha@innotek.de>
80 - TOOLS/BIN: put back old wrc.exe from Oct. 99 because the
81 new one has problems with include files...
82
83 2000-04-25: Patrick Haller <phaller@gmx.net>
84 - SHLWAPI: - stubbed all the UrlXXX functions (required for IE4/5 ;-)
85
86 2000-04-23: Sander van Leeuwen <sandervl@xs4all.nl>
87 - GDI32: Dib section blit fix (missing pixels)
88 - WSOCK32: Don't send FD_CLOSE message when select returns
89 and there's no data available (recv in another thread
90 might have taken that data before the ioctl call in
91 the WSAAsyncSelect thread is executed)
92 -> fixes lost connections in RealPlayer 7
93
94 2000-04-19: Patrick Haller <phaller@gmx.net>
95 - INCLUDE/PDWIN32.TOOLS: fix build rule for (old) .asm sources
96
97 2000-04-19: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
98 - KERNEL32: Added fix for bug in FP13 DosQuerySysInfo.
99 Win32k/Pe2Lx loaded files didn't work.
100 Corrected TLS handling for Borland.
101
102 2000-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
103 - TOOLS\WRC: Resync with latest Wine wrc + added code to produce
104 masm compatible assembly (for some reason removed from
105 wrc some time ago)
106 -> fixes file open dialog (nothing painted)
107 - COMCTL32: Check for NULL pointers before freeing memory
108 (toolbar; removes some warnings from the logfiles)
109
110 2000-04-18: Sander van Leeuwen <sandervl@xs4all.nl>
111 - USER32: Added LR_LOADFROMFILE support for icon & cursor loading
112 - GDI32: Dib section fixes (use height/width of window when
113 dc belongs to a window; use correct stretchblit mode)
114 - TOOLS\REGEDIT: Added regedit command line tool (ported this from
115 Wine with some modifications & bug fixes)
116 - KERNEL32: Also set FPU control word to 0x27f before calling thread
117 functions (just to be sure)
118
119 2000-04-16: Christoph Bratschi <cbratschi@datacomm.ch>
120 - COMCTL32: added new resources: i.e. header cursors
121 changed file version to 5.80 (IE5, Win2k)
122 implemented missing listview messages, implemented some
123 extended styles
124
125 2000-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
126 - KERNEL32: Put back dll search method, fixed bug in LoadLibraryEx
127 (no return after error detection)
128 Set FPU control word to 0x27F before calling exe entrypoint
129 (fixes some FPU exception problems in RealPlayer 7)
130
131 2000-04-16: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
132 - KERNEL32: Reorganized/reworte LoadLibrary/LoadLibraryEx code.
133 isPEImage was changed to return 1 if DLL and 2 if EXE.
134 (It still returns FALSE if not valid PE image.)
135
136 - include\odin32validate.h:
137 New header file. Parameter validation macros.
138 - KERNEL32: Before reading Sanders last message I had rewritten most of
139 the findDll function. So, as my implementation seems a bit
140 more flexible I decided to commit it.
141 Currently it's searching the three LIBPATH paths too. If
142 this causes any real trouble we'll disable this.
143
144 findDll now returns TRUE if a file were found. Callers are
145 corrected to test for this.
146
147 2000-04-15: Christoph Bratschi <cbratschi@datacomm.ch>
148 - COMCTL32: rewrote listview item handling: sort bug fix,
149 allows >= 4.70 support
150 implemented several new messages
151
152 2000-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
153 - WSOCK32: Async select fix (VPBuddy can connect again)
154 - KERNEL32: Remove terminating backslash in FindFirstFileA (if present)
155 (otherwise DosFindFirst fails)
156 Fixed flushing of file maps (wrong VirtualQuery parameter)
157 Path search fix for dlls
158 Dll search order:
159 1) exe dir
160 2) current dir
161 3) windows system dir (kernel32 path)
162 4) windows dir
163 5) path environment variable
164
165 - ODINCRT: Added checks for failing mallocs
166 - USER32: Corrected return value of EnableWindow
167 Send WM_CANCELMODE message when disabling window
168 (return true if previous state was disabled, else false (sdk docs))
169 Don't send mouse messages to disabled windows; reroute
170 them to their parent windows (if any)
171
172 2000-04-14: Sander van Leeuwen <sandervl@xs4all.nl>
173 - KERNEL32: Hardcoded system & windows dir
174 system dir = kernel32 dir
175 windows dir = kernel32 dir\win
176 Fixed dll attach for pe2lx/win32k & lx Odin executables
177 Command line fixes (now starts with full path of exe)
178 Search for dlls in:
179 1) current dir
180 2) win32 exe dir
181 3) windows system dir
182 4) path
183 Append backslash if GetFileAttributes fails (and it's missing
184 from the filename)
185 - PELDR/KERNEL32: Fixed starting of executable with spaces in name
186 (might not be 100% complete yet)
187 Fixes for relative path of executable
188 - ODIN.INI.TXT: Removed DIRECTORIES section
189
190 2000-04-13: Sander van Leeuwen <sandervl@xs4all.nl>
191 - USER32: Set thread message structure to 0 before dispatching it
192 Prevents app from sending the same posted message twice
193 (causing problems when freeing the postmsg struct)
194 (fixes RealPlayer 7 Update service)
195 - CRTDLL: Fixed div (result must be returned in edx:eax)
196 - PE: Check PATH for executable file
197
198 2000-04-12: Christoph Bratschi <cbratschi@datacomm.ch>
199 - COMCTL32: listview: completed most version 4 features
200
201 2000-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
202 - USER32: Added support for topmost windows
203
204 2000-04-10: David Raison <djr@lemur.co.uk>
205 - COMDLG32: fixed wrong lParam in file dialog
206
207 2000-04-09: Sander van Leeuwen <sandervl@xs4all.nl>
208 - GDI32: Y inversion fix for dib sections blits
209 - WINMM: GetPosition fix (don't return 0 when stream not active)
210 - KERNEL32: Fixed OSLibDosFindFirst. Return error if First DosFirstFirst
211 fails. (fixes RealPlayer 7 install)
212
213 2000-04-09: Yuri Dario <mc6530@mclink.it>
214 - INCLUDE(\WIN):
215 - odin.h: define NONAMELESSUNION only for VA3.0 (now works with VA4);
216 remove buildin.h when invoked from resource compiler.
217 - commctrl.h: new macros
218 - mmsystem.h: define DUMMYUNIONNAME with same code used in other
219 headers to avoid precompiling errors.
220 - shlguid.h: missing ID
221 - shlobj.h: missing shlguid.h include
222 - windows.h: define CINTERFACE only for C compilers or VA3.x
223 - windowsx.h: macros
224 - wingdi.h: few AW defines
225 - winuser.h: new macros
226
227 2000-04-08: Christoph Bratschi <cbratschi@datacomm.ch>
228 - COMCTL32: added new styles and functionality, bug fixes
229
230 2000-04-08: Sander van Leeuwen <sandervl@xs4all.nl>
231 - WINMM: Restart, pause & underrun fixes
232 - KERNEL32: Fixed bug in CompareStringW. Unicode conversion was
233 causing heap corruption. (RealPlayer 7 crashes)
234
235 2000-04-07: Michal Necasek <mike@mendelu.cz>
236 - DDRAW\NEW: Experimental fullscreen DDraw, VIDEOPMI based.
237 May not work with all video cards and may cause all
238 kinds of trouble. But works swell for eg. Fallout 1/2
239 or HMM3. Contains some extra bugs compared to the
240 windowed DDraw, ie. Moorhuhn and others don't work
241 with it at all. Please tell me about your experience
242 with this shameless hack.
243
244 2000-04-07: Sander van Leeuwen <sandervl@xs4all.nl>
245 - WINMM: Don't restart when already playing
246 - USER32: Print mark in debug log with WriteLog (#ifdef DEBUG), not dprintf
247 Workaround for paint problems in RealPlayer 7 Update 1.
248 (don't clip the dc with a region in DoNCPaint if the clip
249 region has the same size as the window; doing so creates
250 update problems for no obvious reason)
251 - GDI32: Only change bitmap size in SetDIBitsToDevice if bitmap
252 is not compressed. (fixes crash during startup in Excel)
253 NOTE: Open32 doesn't implement compression type conversion
254 correctly. (black splash screen for RLE8 bitmap)
255 - KERNEL32: Return length of windows or system directory when
256 GetWindowsDirectory/GetSystemDirectory is called with
257 a NULL pointer
258
259 2000-04-07: David Raison <djr@lemur.co.uk>
260 - USER32: Set lfSmCaptionFont structure in NONCLIENTMETRICSA
261 (SystemParametersInfoA/SPI_GETNONCLIENTMETRICS)
262
263 2000-04-07: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
264 - TOOLS\DBGINFO: Sym2Hll is now able to convert .SYM files into HLL
265 debuginfo and add it to LX executables. This might be
266 quite useful if you want to see system DLL while debugging.
267 But before you add debuginfo to all dll's in c:\os2\dll
268 I have to warn that this is _very_ alpha software. Do always
269 make a backup (Sym2Hll don't create backups!) and have
270 recovery boot disks ready!
271
272 2000-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
273 - WINMM: Fixed message callback once more (previous fix broke rp7)
274 Fixed restart
275
276 2000-04-08: Michal Necasek <mike@mendelu.cz>
277 - WINMM: Moved phwo == NULL check below format query handling.
278 (enables sound in Jack Jazzrabbit; still not right though)
279
280 2000-04-05: David Raison <djr@lemur.co.uk>
281 - OLEAUT32: Turned default DEBUG-info down.
282
283 2000-04-05: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
284 - Win32k: Added fixpack 13 symbols to the symbol database.
285 Using win32k.sys with fp13 works fine here.
286
287 2000-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
288 - WINMM: Smallest waveout buffer size = 128 bytes
289 Fixed callback bugs (reported by Michal Necasek)
290
291 2000-04-03: David Raison <djr@lemur.co.uk>
292 - OLE32: Added CoCreateGUID (calls RPCRT4.UuidCreate)
293 - RPCRT4: Beginning of new dll:
294 RpcStringFreeA, RpcStringFreeW, UuidCompare
295 UuidCreate, UuidCreateNil, UuidEqual
296 UuidFromStringA, UuidFromStringW, UuidHash
297 UuidIsNil, UuidToStringA, UuidToStringW
298
299 2000-04-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
300 - SHELL32: don't sort files case sensitive
301
302 2000-04-02: Christoph Bratschi <cbratschi@datacomm.ch>
303 - KERNEL32: FindFirst: don't return "." and ".." in root
304 wrote long to short name conversion
305 added error code converter
306 - USER32: removed 'What You See Is What You Get On First Of April'
307
308 2000-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
309 - USER32: dc.cpp cleanup
310 - GDI32: Dib section sync bugfix (todo: rgb 565 to 555 conversion if bpp == 16)
311 Set y inversion to 0 if dib section isn't flipped
312 (fixes upside down flash videos in RealPlayer 7)
313 - WINMM: Faked mixer apis
314
315 2000-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
316 - GDI32: Fixed dibsection bitblits. (wrong updates of realplayer 7
317 videos)
318
319 2000-04-01: Christoph Bratschi <cbratschi@datacomm.ch>
320 - USER32: added WYSIWYGOFOA interface
321
322 2000-04-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
323 - USER32: Fixed track frame width & height (now you can actually
324 see the tracking frame when moving a window)
325
326 2000-03-31: Christoph Bratschi <cbratschi@datacomm.ch>
327 - USER32: readded CS_HITTEST for HT_TRANSPARENT handling, transparent
328 tooltips are now supported
329 (why is HT_TRANSPARENT in the groupbox control commented out?)
330 - COMCTL32: treeview: added TTF_TRANSPARENT tooltip style
331
332 2000-03-30: Christoph Bratschi <cbratschi@datacomm.ch>
333 - KERNEL32:
334 - SHLWAPI: added stubs for explorer.exe
335 - COMCTL32: treeview: finished info tip
336
337 2000-03-30: Sander van Leeuwen <sandervl@xs4all.nl>
338 - KERNEL32: Also double thread stack in release build
339 (RealPlayer 7 runs out of stack sometimes)
340 - WSOCK32: Fixed bugs in WSAStartup/Cleanup & select (fixes Gnutella)
341
342 2000-03-29: Sander van Leeuwen <sandervl@xs4all.nl>
343 - KERNEL32: Throw exception when critical section times out
344 - USER32: Fixed bugs in PeekMessageA/W (fixes connection failures
345 & hangs after warning dialogs in RealPlayer 7)
346 - GDI32: Check for NULL region in GetRgnBox; can cause a crash
347 in Open32
348
349 2000-03-29: Christoph Bratschi <cbratschi@datacomm.ch>
350 - KERNEL32: added FindFileFirstMultiA for internal usage
351
352 2000-03-28: Markus Montkowski <mmontkowski@gmx.de>
353 - KERNEL32: Added workaround for GetDiskFreeSpaceA; Open32 api doesn't
354 like NULL pointers
355
356 2000-03-28: Sander van Leeuwen <sandervl@xs4all.nl>
357 - KERNEL32: Fixed VirtualQuery; cbLength is length of memory structure,
358 not range of pages
359 Fixed compare of imported api names with length < 4
360 Fixed OpenFile; if filename doesn't contain path, look for
361 it in:
362 1: dir from which the app loaded
363 2: current dir
364 3: windows system dir
365 4: windows dir
366 5: dirs in path path environment variable
367 NOTE: Icon extraction in shell32 is broken; expects PE
368 images even when looking for icons in shell32.
369 (it should use FindResourceExA/W when looking for resources
370 in that case)
371 - USER32: Fixed combobox focus changes when showing dropdown window
372 - WSOCK32: Added support for warp 4 error messages (0 based)
373 Fixed FD_CLOSE async notification (fixes telnet ability
374 to detect lost connections)
375
376 2000-03-28: Christoph Bratschi <cbratschi@datacomm.ch>
377 - SHELL32: don't use pdump() in release build
378 - GDI32: dump ROP2 mode
379
380 2000-03-27: Sander van Leeuwen <sandervl@xs4all.nl>
381 - USER32: Fixed SetParent; remove child from parent's list (previously
382 didn't happen for children of the desktop)
383
384 2000-03-27: Christoph Bratschi <cbratschi@datacomm.ch>
385 - SHELL32: only scan dir once in CreateFolderEnumList
386 floppy drives have a fixed name
387 NOTE: delete 'bin\debug(release)\shres.*' or the resources
388 won't be updated
389
390 2000-03-26: Christoph Bratschi <cbratschi@datacomm.ch>
391 - COMDLG32:
392 - SHELL32: merged with Corel WINE 20000324
393
394 2000-03-25: Sander van Leeuwen <sandervl@xs4all.nl>
395 - KERNEL32: Fixes for GetStdHandle
396 - WSOCK32: Fixes for getservbyname & getservbyport
397
398 2000-03-24: Sander van Leeuwen <sandervl@xs4all.nl>
399 - KERNEL32: Fixed typo in pe loader (check for < 512 MB)
400 - USER32: Add size of space between two menu items when calculating
401 size of ownerdrawn menu item (fixes RealPlayer 7 menu)
402 - GDI32: Default format of 16 bits dibsection is RGB555
403 (fixes wrong colors when (sometimes) playing flash files
404 in RealPlayer 7)
405 - WSOCK32\NEW: Bugfixes
406 - WSOCK32: Replaced with new wsock32
407
408 2000-03-24: Achim Hasenmueller <achimha@innotek.de>
409 - WSOCK32\NEW: Made it compile with the TCP/IP V5
410 header files.
411 NOTE: should we rely on the 32bit
412 stack, is there any benefit for us?
413 - DPLAY: Added ordinals 2 and 3 to the def file, APIs
414 already seem to be implemented?!?
415 - COMDLG32: Fixed correct (Win95/OS2) dialog invocation
416
417 2000-03-24: Christoph Bratschi <cbratschi@datacomm.ch>
418 - USER32: fixed GetClipboardFormatNameW
419 fixed scrollbar memory leak
420 - SHELL32: fixed IDataObject_fnGetData return value (file dialog
421 is now usable)
422
423 2000-03-23: Sander van Leeuwen <sandervl@xs4all.nl>
424 - KERNEL32: Fixed shared global mutex
425 Added VSemaphore class
426 - USER32: Fixed shared global mutex
427 TODO:
428 ---->> Compiler bug: during __ctordtorInit it calls the constructor
429 of global objects, even if the dll has already
430 been loaded!
431 Replaced WriteLogs by dprintfs
432 - WSOCK32\NEW: Added WSAAsyncSelect + bugfixes
433
434 2000-03-23: Christoph Bratschi <cbratschi@datacomm.ch>
435 - COMDLG32: improved file dialog combobox
436 - COMCTL32: removed static WINMM linking
437 several listview fixes
438
439 2000-03-22: Sander van Leeuwen <sandervl@xs4all.nl>
440 - WSOCK32\NEW: Completely rewritten (removed dependancy on pmwsock)
441 Untested and unfinished (WSAAsyncSelect)
442
443 2000-03-21: Sander van Leeuwen <sandervl@xs4all.nl>
444 - GDI32: Added RGB 555 to 565 conversion in dibsection blit.
445 (fixes wrong colors in RealPlayer 7 Update 1 (rm videos
446 only))
447 - include\odinwrap.h: Disable heap checking by default for debug
448 build -> kills performance!
449
450 2000-03-21: Edgar Buerkle <Edgar.Buerkle@gmx.net>
451 - MSVCRT: Adding logging statement to _EH_prolog
452
453 2000-03-21: Christoph Bratschi <cbratschi@datacomm.ch>
454 - COMCTL32: optimized header/treeview for AMD cpuid
455 fixed dispinfo callbacks
456 reduced listview redraws
457 fixed wrong ASCII definitions in commctrl.h
458
459 2000-03-20: David Raison <djr@lemur.co.uk>
460 - OLE32: Ported OleQueryCreateFromData, OleCreateFromData from
461 wine/corel sources.
462 - OLEAUT32: Bugfix in ITypeLibImpl_GetDocumentation
463
464 2000-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
465 - WSOCK32: Fixed relay bug in WSAAsyncSelect (delete relay slot
466 with same socket nr & window handle; there can
467 be more selects per window)
468
469 2000-03-19: David Raison <djr@lemur.co.uk>
470 - OLE32: Bugfixes.
471 Ported changes from wine/corel sources.
472 Created ReadClassStm, WriteClassStm, ProgIDFromCLSID
473
474 2000-03-19: Sander van Leeuwen <sandervl@xs4all.nl>
475 - ODINCRT: Fixed FS wrapper for _fdopen & others in file.cpp
476 (missing SetFS)
477
478 2000-03-19: Michal Necasek <mike@mendelu.cz>
479 - DINPUT: Few fixes, now Fallout 1/2 almost works
480
481 2000-03-18: Michal Necasek <mike@mendelu.cz>
482 - DDRAW: Fixed messed up DPA callback calling convention
483 Added some transparent blit code which was
484 mysteriously missing
485
486 2000-03-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
487 - MSVCRT: Implemented _EH_prolog
488
489 2000-03-18: Christoph Bratschi <cbratschi@datacomm.ch>
490 - USER32: merged with Corel WINE 20000317
491 added GCL_HICONSM support
492 fixed messagebox with no icon
493 - COMCTL32: merged with Corel WINE 20000317 + bug fixes
494
495 2000-03-18: Sander van Leeuwen <sandervl@xs4all.nl>
496 - ODINCRT: Added FS wrapper for _fdopen
497 (fixes crash at exit in Professional MineSweeper when
498 selection About Odin from the system menu)
499
500 2000-03-17: Christoph Bratschi <cbratschi@datacomm.ch>
501 - COMCTL32: fixed trackbar buddy alignment
502 added useful internal tooltip styles
503
504 2000-03-17: Sander van Leeuwen <sandervl@xs4all.nl>
505 - WSOCK32: Semaphore protection for relay slot alloc/free
506 Fixed bug in WSAAsyncSelect. Allow more than one
507 async call per window for RelayAlloc call. If it's not
508 alloced, pmwsock will return an error. Previously it was
509 overwriting slots for other async calls. (WSAAsyncGetHostName
510 in RealPlayer 7)
511 - KERNEL32: Fixed handle creation for thread 0.
512
513 2000-03-16: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
514 - TOOLS\FASTDEP:
515 Speed optimizations: using AVL trees, include dir caching,
516 dependencies stored in AVL tree until all files has been
517 processes, buffered write.
518 Cyclic dependency check.
519 All files but the objectfiles now should have fully qualified paths.
520
521 - INCLUDE\PDWIN32.TOOLS:
522 DEPEND: Enabled cyclic check.
523
524 2000-03-16: Sander van Leeuwen <sandervl@xs4all.nl>
525 - USER32: Fixed virtual keycode of return key
526 TODO: Not done for all keys. Should probably looks at the
527 scancode (not virtual char) to translate keys.
528 - GDI32: RP7 calls CreateDIBSection with HDC 0; Call
529 GetWindowDC(GetDesktopWindow()) in that case
530 -> fixes crash (result of CreateDIBSection failure)
531 TODO: Looks like this is allowed in NT, but need to check
532 this to be sure nothing else caused this problem.
533 (Note: most recent RealPlayer 7 version only)
534 - KERNEL32: Semaphore protection of handle alloc
535 Added handlemanager class for thread handles
536 Added workaround for Open32 WaitForSingleObject bug
537 (if thread is terminated and WaitForSingleObject is
538 called with the thread's handle -> never returns
539 (new rp7 hang at exit))
540 TODO: WaitForMultipleObjects can still hang ->
541 Event, semaphore, mutex & wait apis need to
542 be redesigned (not using Open32)
543
544 2000-03-14: Christoph Bratschi <cbratschi@datacomm.ch>
545 - USER32: implemented much faster LB_SETCOUNT
546
547 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
548 - USER32: Put back check (oldsel == newsel) in LISTBOX_SetSelection
549 (why was this commented out?)
550 Fixed combobox: Clear CBF_SELCHANGE flag before calling
551 CBUpdateEdit
552 Don't send CBN_EDITUPDATE when CBF_NOEDITNOTIFY
553 flag is set (by combo_handletext)
554 -> fixes infinite loops in RealPlayer 7 (type name of file
555 previously used in edit box; last letter entered -> crash)
556 AdjustWindowRectEx bugfix (reported by Robert Lalla)
557 Don't clear WS_POPUP flag. (HAS_THINFRAME depends on it)
558 -> fixes wrong resolution changes in Quake 2
559 Don't clear WS_CHILD flag either. (HAS_THICKFRAME depends on it)
560
561 - KERNEL32: Clear FILE_SHARE_DELETE flag before calling Open32's
562 CreateFile. (otherwise it fails) -> fixes RealPlayer 7
563 Basic (new update).
564
565 - WSOCK32: Changed workaround for setsockopt bug (SO_SNDBUF/SO_RCVBUF (OS/2's
566 winsock returns WSAEINVAL if size > 64k))
567 Only change size if setsockopt returns WSAINVAL (32 bits stack
568 should support size > 64 kb (?))
569 Added selective logging feature.
570
571 2000-03-12: Markus Montkowski <mmontkowski@gmx.de>
572 - KERNEL32: Added fix for GetFileAttributes. Open32 doesn't like
573 i.e. 'c:'; needs to be changed into 'c:\'
574
575 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
576 - include\winconst.h: Fixed KEY_ALL_ACCESS definition
577 (reported by Yuri Dario)
578 - DSOUND: Replaced dsound by new version
579 - USER32: Replaced os2.h includes by os2wrap.h
580 Set message nr, wParam & lParam to 0 for dummy messages
581 (to prevent keyboard or mouse messages swallowed by dinput
582 from being dispatched)
583 - KERNEL32: Replaced os2.h includes by os2wrap.h (cvtcursorgrp & oslibdebug)
584 - WSOCK32: Fixed bug in setsockopt for SO_SNDBUF/SO_RCVBUF (OS/2's
585 winsock returns WSAEINVAL if size > 64k)
586
587 2000-03-12: Michal Necasek <mike@mendelu.cz>
588 - dsound\new: Fixed sound in Heroes of M&M III
589
590 2000-03-11: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
591 - OPENGL\GLIDE: Fix for Voodoo 1 glide (missing io ports)
592
593 2000-03-11: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
594 - OPENGL\GLUT: Fix for gettimeofday. This is defined conflicting in
595 the toolkit sys\time.h.
596 - TOOLS\BIN: Implemented an optional directory locking in
597 dowithdirs.cmd. (Useful for SMP builds.)
598
599 2000-03-11: Sander van Leeuwen <sandervl@xs4all.nl>
600 - OPENGL\GLUT: Fixed compile problems + cleanup
601 (use C(XX)FLAGS_WIN32APP so you don't have to
602 explicitely specify which api type you use (ascii or unicode)!)
603
604 - OPENGL\GLIDE: Fixed wrong binary path for voodoo1 glide
605 - include\win\debugtools.h: Disable TRACE, WARN etc when DEBUG is not defined
606
607 2000-03-11: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
608 - OPENGL: Fixed error preventing build to complete
609
610 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
611 - KERNEL32: Set initial max nr of file handles to 256 during kernel32 init
612 Create DDRAW & DSOUND registry keys in InitRegistry
613 (NOTE: Must be done in install program!)
614 Added some win95 stubs
615 - GDI32: Added 16 bits device apis stubs
616
617 2000-03-10: Michal Necasek <mike@mendelu.cz>
618 - dsound\new: Changed DART buffer size calcualation, hopefully
619 WinAmp will sound better now.
620
621 2000-03-09: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
622 - include\pdwin32.tools: New tool, EXISTS --> \tools\bin\Exists.cmd
623 - tools\bin\Exists.cmd: New tool which checks if the file passed in
624 exists. If the file exists it returns 0, else 1. This is
625 used to check if .depend and other files exists in the
626 makefiles. (See pdwin32.post to see how.)
627 - include\pdwin32.post: .depend is only included if it exists. You'll
628 get a warning if it don't, but the makefile works fine.
629 Added a check on OBJDIR not being empty in the clean rule.
630 $(RM) $(OBJDIR)\* is will remove all files in the root dir if
631 OBJDIR is empty.
632 - win32k: Updated makefile with the use of EXISTS for both .depend and
633 makfile.inc. An update check for makefile.inc <-> configure.cmd
634 was also added.
635 Added checks for empty variables in clean rule, and we no longer
636 deletes * in any directory.
637
638 A CVS tip:
639 When new directories are added you have to to a 'cvs checkout .'
640 from the root.
641 A 'cvs update' don't get the new directories it seems
642 (There have been added some dirs under win32k lately so please do this.)
643
644 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
645 - KERNEL32: Major rewrite of PE loader classes to correctly support
646 dll dependencies
647 TODO: Circular dependencies only partly working
648 (a->b->a works, but a->b->c->a doesn't)
649 - USER32: Fixed bug in dialog constructor (class name translation)
650 (only showed up in release build)
651 Dinput mouse changes/fixes
652
653 2000-03-08: Michal Necasek <mike@mendelu.cz>
654 - dsound\new: Fixed volume and panning calculation that
655 sometimes caused ugly noise
656
657 2000-03-08: Michal Necasek <mike@mendelu.cz>
658 - dsound\new: Completely new DART-based DirectSound. Works fine
659 for me with Quake 3, Moorhuhn and WinAmp.
660
661 2000-03-07: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
662 - makefiles and include\pdwin32.*:
663 * Updated nearly all makefiles to the new makefile style.
664 Win32k, pe2lx and some subdirs of Winmm
665 * Odin32 resource files are now to have the extention .orc
666 All files have, save some under WinMM and in old/new dirs,
667 been renamed. There are now new interference rules in
668 pdwin32.tools which will create the resource assembly and
669 assemble it into an object file. So you simply have to
670 specify the output object file for Odin32 resources along
671 with the other object files.
672 * A little not on forwarders. ILINK returns a warning code of
673 4 when aliases are generated. An errorcode <> 0 stops NMAKE
674 normally. To workaround these problem we simply tell NMAKE to
675 accespt all error codes in the range 0-4. This is done by
676 putting '-4 ' in front of the $(LD2) statement.
677 I don't want to see _any_ '-$(LD2)'!!!
678
679
680 2000-03-06: Sander van Leeuwen <sandervl@xs4all.nl>
681 - USER32: Fixed bug in edit control
682 If nyoff > nr lines in control -> bottom line in control
683 window should show last line of control
684 Wine code shows last line at the top of the control
685 (Quake 3 startup edit control shows the problem)
686
687 2000-03-05: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
688 - include\pdwin32.vac*: Added OS2RC and OS2RCFLAGS. This defines the
689 OS/2 resource compiler and the flags used during compilation.
690 When it comes to linking we should assume NO flags and simply
691 invoke the it like this: $(OS2RC) <source>.res <target>.dll.
692 (See src\kernel32\makefile for an example.)
693
694 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
695 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
696 error in calling convention prototype in glutint.h
697
698 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
699 - GLUT32: Added logic to escape from optimizer bug in VACPP
700
701 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
702 - fastdep: Simple preprocessor. Commments and #if 0/1.
703 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
704 Didn't concider the NODEBUGINFO macro causing daily builds
705 to become enormous. Daily build of 6MB is not good!.
706 - include\pdwin32.v*.*:
707 *Alternate linker tool, LD2. This is ilink for VAC.
708 (See src\kernel32\makefile for hints how to use it).
709 *Synced configuration for the two VAC versions.
710
711 NOTE that NODEBUGINFO and DEBUGALL is handled within these
712 files. You don't have to test for them to set the correct
713 compiler and linker flags, this is allready done!
714
715 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
716 - INCLUDE\pdwin32.tools, pdwin.vac*
717 Added new build rules (conditional at this time)
718 For each dll a subdir bin\release & bin\debug is created
719 in which the object files of the release & build version
720 are saved.
721 - INCLUDE\pdwin32.post
722 Common makefile rules to be included by all makefiles
723 - USER32\KERNEL32: Switched to new build rules
724 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
725 adjusted)
726 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
727 Partially fixed destruction of loaded dlls in ExitProcess
728 (TODO: dependencies are not yet right; needs new design)
729 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
730 to hmdevio.cpp
731 - USER32: Pass on keyboard messages if dinput handler returns TRUE
732 Also send non-client mouse messages to dinput
733 (TODO: always returns true after calling dinput handler)
734 - OPENGL\GLIDE:
735 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
736 to hmdevio.cpp (reported by Michal Necasek)
737
738 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
739 - DDRAW: Fixed bug in CreateSurface and QueryInterface
740 (Moorhuhn now starts fine with ddraw)
741 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
742 in the virtualKeyTable
743
744 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
745 - KERNEL32: Create shell dirs in odin\bin directory
746 Cleanup (never call Open32 apis directly if the proc
747 isn't a wrapper; include win32api.h and call Odin api)
748 Fixed FS corruption for DosAliasMem
749 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
750 fixup section doesn't start on page boundary)
751 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
752 there (importing them directly creates a circular
753 dependency (kernel32->advapi32->kernel32))
754 Should probably be moved to ntdll
755 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
756 (Realplayer 7 audio now works (when playing .rm files))
757
758 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
759 - KERNEL32: Fixed calling convention bug in conprop2.cpp
760 (caused crashes with release build)
761
762 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
763 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
764 - OPENGL\MESA: Reapplied TLS fixes
765 Check for null pointer in wglSetPixelFormat
766 - OPENGL\MESA\3dfx: Use c files from Mesa dir
767 Check for null pointer in wglSetPixelFormat
768 - WINMM: Fixed DartWaveOut::getPosition (overflow)
769 (fixes mp3 playback in RealPlayer 7)
770 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
771 if app wants to change dir to "\")
772 Create shell folders + shell keys
773 (NOTE: This has to be done in the odin install program
774 once we have one)
775 - ADVAPI32: Added crypt api stubs
776
777 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
778 - OPENGL: Implemented DIVE support in Mesa
779
780 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
781 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
782 (FindWindowExW was not working correctly either)
783 First send WM_NCACTIVATE, then WM_ACTIVATE
784 Fixed focus problems with Odin apps
785 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
786 WinSetActiveWindow when a user clicks on the titlebar
787 of an inactive window & after sending WM_MOUSEACTIVATE)
788 TODO: Does WinSetActiveWindow work properly or should we
789 always call WinSetFocus???
790 Call Dinput handler when translating mouse & keyboard
791 messages (during Get/PeekMessage)
792 - OPENGL: Always build release version of glide, mesa, glu32 & glut
793 Build mesa software & 3dfx dlls; don't build OS/2 opengl
794 wrapper anymore
795 - OPENGL\GLIDE\CVG\GLIDE:
796 Disable instruction scheduling in release build -> messed up
797 colors when turned on (most likely VAC optimizer bug)
798 TODO: Somebody should also check this for the voodoo 1 glide dll.
799 - OPENGL\GLIDE\CVG:
800 Fixed makefile
801 - OPENGL\MESA\GL\gl.h
802 Removed circular header dependency (breaks build)
803 - OPENGL\MESA\3dfx:
804 Copy 3dfx opengl32.dll to bin\glide
805
806 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
807 - USER32: Fixed dprintf in CreateWindowExW
808 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
809
810 2000-02-29: Edgar Buerkle <Edgar.Buerkle@gmx.net>
811 - USER32: Added support for keyboard hooks (fixes Moorhuhn)
812 in PeekMessage & GetMessage
813
814 2000-02-29: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
815 - TOOLS\FASTDEP: Restructured it a little. Support for multiple
816 languages:
817 C and C++ (as earlier)
818 Assembly
819 Resource files (OS/2 resources at least...)
820 COBOL (just for fun! - I'll use it at job)
821 Things seems to work ok, but if an error occurs, please
822 fix it or send me a note and I'll fix it ASAP.
823
824 2000-02-29: Sander van Leeuwen <sandervl@xs4all.nl>
825 - OPENGL\MESA: Added Odin port of Mesa Opengl library
826 (Ported by Jeroen van den Horn)
827 NOTE: The Mesa 3D graphics library has a different license
828 (see LICENSE.TXT in the Mesa directory)
829 - OPENGL\MESA\3DFX:
830 Added Odin port of 3dfx Voodoo Mesa GL
831 (tested with simple opengl samples only, but
832 this is the first hardware accelerated Opengl
833 implementation for OS/2!)
834 NOTE: The Mesa 3dfx graphics library has a different license
835 (see LICENSE.TXT in the Mesa\3dfx directory)
836 - KERNEL32: Only call ExitProcess the first time KillWin32Process
837 is executed. Call DosExit otherwise.
838 Fix for GpdDev device io (needed for native glide dll)
839
840 2000-02-28: Sander van Leeuwen <sandervl@xs4all.nl>
841 - KERNEL32: Call ExitProcess in KillWin32Process to make sure
842 the dll libmain handlers are called after a crash.
843 (i.e. Glide needs this to restore the display)
844 - INCLUDE\WIN: Added wgl definitions to wingdi.h
845
846 2000-02-27: Sander van Leeuwen <sandervl@xs4all.nl>
847 - WINMM: Implemented waveOutGetPosition
848
849 2000-02-27: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
850 - pdwin32.tools: "New" tool, MAKE_CMD. Passes on the DEBUG and
851 NODEBUGINFO macros variables to the next make job.
852 (It's better to have it here than to have it in nearly
853 all makefiles, and forgetting to put it there...)
854 - WIN32K: *The dep rule will make a makefile.inc if not present. It
855 will also make dependencies for pe2lx and lib.
856 *Have created a lib rule.
857 *The all rule will now make Pe2Lx.
858 - src/makefile: win32k makes pe2lx, no need for special pe2lx stuff.
859
860 Sander, have a look the build and rebuild rules please.
861
862 2000-02-26: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
863 - WIN32K: *Symbol Database is implemented. Contains symbols for most
864 retail kernels. (see win32k.txt or readme.txt)
865 *No scanning of the os2krnl file, the loaded image is now
866 scanned to determin which build, debug/retail and smp/uni.
867 *16-bit logging.
868 *Extract.exe rule. Extract.exe program generates the
869 SymDb.c source file found in dev16 from a collections of
870 kernel symbol files.
871
872 2000-02-25: Christoph Bratschi <cbratschi@datacomm.ch>
873 - COMCTL32: added listview unicode support
874 fixed treeview WM_VSCROLL, trap in UNILIB
875
876 2000-02-24: Achim Hasenmueller <achimha@innotek.de>
877 - COMCTL32: Added infoPtr == NULL checks in tooltips control
878 to prevent crashes when tooltip creation fails
879
880 2000-02-25: Sander van Leeuwen <sandervl@xs4all.nl>
881 - OPENGL\GLIDE: Added Odin version of Glide based on the OS/2 port
882 written by Craig Ballantyne. (Voodoo 1 & Voodoo 2)
883 NOTE: Includes 3dfx Glide license
884
885 2000-02-24: Sander van Leeuwen <sandervl@xs4all.nl>
886 - USER32: WS_MAXIMIZE & WS_MINIMIZE flags updated when necessary
887 Changed/fixed RedrawWindow -> fixes lack of erase background
888 msg in AbiWord rebar control & Papyrus start dialog
889 TODO: Pingpong.exe broken again. Need to fix this correctly
890 Hide caret in BeginPaint, show it in EndPaint
891 - GDI32: CreateICA/W bugfix (Open32 tests lpszDriver for NULL even though it's ignored)
892 (fixes Papyrus error message about CreateIC)
893 - COMCTL32: Fixed wrong calling convention for property sheet handlers
894 (prsht.h in include\win)
895 This fixes crashes in VPBUDDY (preferences dialog) AND (!)
896 fixes the empty preferences dialog in both debug & release
897 builds.
898 NOTE: I've fixed similar bugs before. Somebody should verify
899 all comctl32 handlers...
900
901 2000-02-23: Christoph Bratschi <cbratschi@datacomm.ch>
902 - USER32: export 55AA pattern functions for COMCTL32
903 fixed EN_CHANGED
904 - COMCTL32: converted to C++ -> needs nmake dep
905 ported animate control
906
907 2000-02-22: Sander van Leeuwen <sandervl@xs4all.nl>
908 - WINMM/GDI32/KERNEL32/USER32: Fixed compile problems for release build
909 - USER32: Fixed bug in window class ctor (windowProc not set to 0)
910 (only showed up in release build)
911 - KERNEL32: Fixed bug in commitPage (winimagepeldr.cpp)
912 (only showed up in release build)
913 Fixed wrong calling convention for SetLastError calls
914 in OSLibiGetModuleHandleA
915 (only showed up in release build)
916 Fixed wrong calling convention for SetLastError calls
917 in oslibdos.cpp.
918
919 2000-02-22: Christoph Bratschi <cbratschi@datacomm.ch>
920 - COMCTL32: merged with Corel WINE 20000212
921 added common base functions
922
923 2000-02-21: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
924 - CRTDLL: Added wtol, wtoi, setsystime, getsystime
925
926 2000-02-21: Christoph Bratschi <cbratschi@datacomm.ch>
927 - USER32: merged controls and nc code with Corel WINE 20000212
928 added WS_EX_CONTEXTHELP button
929
930 2000-02-21: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
931 - WIN32K: *Initial support for UNIX-styled scripts
932 (files starting with an #!<interpreter> [args...])
933 This is a _very_ big hack! But never the less it's working.
934 (or at least it seems like working...)
935 *The kernel symbol importer is enhanced to support more
936 generic function prologs and to import variables and
937 16-bit functions.
938 *Segments are now locked in physical memory.
939 (Note, last changes have not been tested on Aurora yet,
940 but it will hopefully work just fine.)
941
942 2000-02-21: Sander van Leeuwen <sandervl@xs4all.nl>
943 - GDI32: SetDIBits bugfix (for dib sections)
944 - USER32: Ported all Wine accelerator apis (fixes keys in calc)
945
946 2000-02-21: Jens Wiessner <wiessnej@rfi.de>
947 - RASAPI32: Added stubs
948 - OLEPRO32: Ported Corel Wine stub dll
949 - CRTDLL: Replaced some stubs
950
951 2000-02-18: Sander van Leeuwen <sandervl@xs4all.nl>
952 - OPENGL\GLIDE: Added Odin version of Glide based on the OS/2 port
953 written by Craig Ballantyne. (Voodoo 1)
954 NOTE: Includes 3dfx Glide license
955
956 2000-02-17: Sander van Leeuwen <sandervl@xs4all.nl>
957 - KERNEL32: Fixed memory map view bug (main map deleted when there
958 were still views left) -> fixes crash when playing Realplayer
959 video (.rm) files
960 - WINMM: Added new logging feature + fixed waveout query format bug
961
962 2000-02-16: Christoph Bratschi <cbratschi@datacomm.ch>
963 - COMCTL32: treeview: switched to unicode, fixed many bugs
964
965 2000-02-16: Sander van Leeuwen <sandervl@xs4all.nl>
966 - KERNEL32/USER32/GDI32: Added new logging feature which allows users
967 to disable or enable logging for separate source
968 files. (see Logging.txt for details)
969 - GDI32: SetDIBitsToDevice fix for RealPlayer 7 (store the right bitmap
970 size in the BITMAPINFO structure before calling Open32)
971
972 2000-02-15: Sander van Leeuwen <sandervl@xs4all.nl>
973 - USER32: SetWindowPos bugfix (returned before hiding or showing windows)
974 Fixes Delphi apps
975 - KERNEL32: Fixed Release method of LX dlls (didn't delete object)
976 Fixed cpuhlp assembly functions (compiler changes calling
977 convention with optimizations on (stores parameter in eax
978 instead of on the stack)
979
980 2000-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
981 - COMCTL32: Added Wine license
982 - KERNEL32: Search in path for dlls if the pe loader can't find them
983 (RP7 loads pngu3264.dll by changing PATH and then calling
984 LoadLibrary)
985
986 2000-02-14: Christoph Bratschi <cbratschi@datacomm.ch>
987 - USER32: merged combobox with Corel 20000212
988 - COMCTL32: merged treeview with Corel 20000212 and continued rewrite
989
990 2000-02-12: Christoph Bratschi <cbratschi@datacomm.ch>
991 - USER32: added v5.00 messages to wndmsg.cpp
992 - GDI32: LineDDA fix
993
994 2000-02-12: David Raison <djr@lemur.co.uk>
995 - OLE32: Fixed IsEqualIID issue
996
997 2000-02-11: Vit Timchishin <tvv@sbs.kiev.ua>
998 - KERNEL32: Fix for OpenFile; fill in OFSTRUCT even if api fails
999 (needed for Acrobat Reader 4.0)
1000
1001 2000-02-10: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
1002 - /tools/database/ + /src/makefile: Odin32 API DB.
1003
1004 2000-02-10: Christoph Bratschi <cbratschi@datacomm.ch>
1005 - USER32: added some stubs
1006 fixed wrong pixels at the right side of menu items
1007 - COMCTL32: implemented LVS_NOSORTHEADER
1008 increased statusbar height (temporal hack)
1009 first steps of treeview rewrite
1010
1011 2000-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
1012 - GDI32: Added support for memory map handles in CreateDIBSection
1013 Fixed CreateICA/W; Open32's version is case sensitive whereas
1014 win32's apparently isn't.
1015 - TOOLS\makefile: fixed clean build
1016 - src\makefile: fixed clean build
1017 - src\makefile.smp: fixed incorrect dir change
1018
1019 2000-02-10: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
1020 - *: Updated the source tree to use autogenerated dependencies.
1021 You will have to do a 'nmake dep' from either /src or / before
1022 being able to make anything.
1023 -All makefiles is required to have a 'dep' rule.
1024 -All dll makefiles is now required to have a 'lib' rule which
1025 makes the libraries for the module. This rule should also
1026 check that the library in $(PDWIN32_LIB) is up-to-date.
1027 - Tools/FastDep: Dependency tool. (Fast=Quick-and-Dirty)
1028 Moved from /src/win32k. This is currently used to generate
1029 dependency information.
1030 Note that it doesn't have any precompiler logic! This is causeing
1031 some warnings...
1032 - include/pdwin32.tool: Two new tools DEPEND and DOWITHDIRS.
1033 - src/makefile: used the DOWITHDIRS to do cleanup, lib and dep.
1034
1035 2000-02-10: Edgar Buerkle <Edgar.Buerkle@gmx.net>
1036 - GDI32: Fix alignment for 1 & 4 bits bitmaps (dibsection)
1037 - NTDLL: Pretend no debugger is active in NtQueryInformationProcess
1038
1039 2000-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
1040 - USER32: Implemented WaitForInputIdle
1041 ScrollWindow fix; don't call InvalidateRect as WinScrollWindow
1042 already invalidates the area (and the call to InvalidateRect was
1043 wrong as it has to include the erase flag; should have called
1044 RedrawWindow instead)
1045 - KERNEL32: WinExec: Wait for process to block on input before
1046 returning
1047 - OpenGL base, GLUT, GLU: Added version resource, removed dll exitlist
1048 handlers
1049
1050 2000-02-09: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
1051 - OpenGL base, GLUT, GLU: NODEBUGINFO implemented in the makefiles.
1052
1053 2000-02-09: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
1054 - ODIN.INI: OPENGL32.DLL <--> OPENGL.DLL translation, since
1055 WinXX OpenGL apps can be dynamically linked with
1056 MS OpenGL (OPENGL32.DLL) *or* SGI OpenGL (OPENGL.DLL).
1057
1058 2000-02-09: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
1059 - OpenGL base: Various minor fixes
1060 - OpenGL GLUT: Various minor fixes
1061 - OpenGL GLU: 'Native' port of SGI GLU
1062
1063 2000-02-08: Knut Stange Osmundsen <knut.stange.osmundsen>
1064 - Win32k: Temporarily disabled some unused imported kernelfunctions.
1065 Corrected a problem with overloading _ldrEnum32bitRelRecs;
1066 it failed on WS4eB. (Message 'DosDevIOCtl failed')
1067
1068 2000-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
1069 - USER32: Don't use shell positioning for child windows (breaks Notes)
1070 Turn of WM_BACKERASEBKGND when calling RedrawWindow to
1071 invalidate a window (without erase flag set; but also without
1072 noerase) -> fixes flickering in pingpong Opengl sample
1073 - KERNEL32: Search path for executables when they can't be found in
1074 the current directory.
1075
1076 2000-02-07: Christoph Bratschi <cbratschi@datacomm.ch>
1077 - KERNEL32: Ported more Wine thunk apis
1078
1079 2000-02-07: Sander van Leeuwen <sandervl@xs4all.nl>
1080 - USER32: Fix for DCX_INTERSECTRGN in GetDCEx (use ExtSelectClipRgn
1081 to combine current & new clip region)
1082 - ADVAPI32: Ported Wine LookupAccountSidA/W (semi-stubs now)
1083
1084 2000-02-06: Jens Wiessner <wiessnej@rfi.de>
1085 - WINMM: Updated MCI dlls (added version info)
1086
1087 2000-02-06: Sander van Leeuwen <sandervl@xs4all.nl>
1088 - KERNEL32: Changed GetProcessDword ordinal to 18
1089 - USER32: Temporarily commented out shellposition changes
1090 (breaks i.e. calc & Notes)
1091 Started rewriting BeginPaint/EndPaint + DC apis
1092
1093 2000-02-06: Christoph Bratschi <cbratschi@datacomm.ch>
1094 - USER32: ported WinHelpA from WINE
1095
1096 2000-02-05: Christoph Bratschi <cbratschi@datacomm.ch>
1097 - USER32: WM_SETHOTKEY: save data
1098 prototype for WS_EX_CONTEXTHELP button
1099 check WS_EX_RIGHT in button control
1100 fixed tasklist entry
1101 implemented CW_USEDEFAULT with FCF_SHELLPOSITION
1102
1103 2000-02-05: Sander van Leeuwen <sandervl@xs4all.nl>
1104 - KERNEL32: Memory map fixes (file maps)
1105 - USER32: mdi child creation fix (child still not activated when created)
1106 Default WM_ERASEBKGND handler change (only erase invalid area)
1107 (note: might be wrong; have to check this in NT; probably
1108 need to rewrite code that sends those messages)
1109 -> fixes redraws for i.e. windows behind menu windows
1110 - GDI32: Don't use Open32 apis to load opengl32 (nor for GetProcAddress)
1111 Import wgl* apis
1112 - OPENGL: Removed OS2wgl apis (they had the wrong calling convention
1113 -> causes crashes in gdi32 when compiled with optimizations on)
1114
1115 2000-02-04: Markus Montkowski <mmontkowski@gmx.de>
1116 - DDRAW: Many minor/major bugfixes at numerous places
1117 - DSOUND: Fixed GetCurrentBufferPos in the virtual player
1118
1119 2000-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
1120 - ALL: Added version resource (if not already present)
1121 Link with dllentry.obj (those dlls that don't need custom dll
1122 entrypoints)
1123 Clean up in process detach handler of win32 libmain
1124 (except for a few core dlls (gdi32/user32/kernel32))
1125 - DLLENTRY: Standard dll entrypoint
1126
1127 2000-02-04: Christoph Bratschi <cbratschi@datacomm.ch>
1128 - COMCTL32: merged with WINE 20000130
1129
1130 2000-02-03: Jens Wiessner <wiessnej@rfi.de>
1131 - NTDLL: Ported Wine security apis
1132 - CRTDLL: Update
1133
1134 2000-02-03: Christoph Bratschi <cbratschi@datacomm.ch>
1135 - USER32: merged controls with WINE 20000130
1136
1137 2000-02-03: Daniela Engert <dani@ngrt.de>
1138 - GDI32: Implement RGB 555 to RGB 565 conversion in assembler
1139
1140 2000-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
1141 - WININET: Ported Wininet code from Corel Wine tree
1142 - INCLUDE\WINSOCK: MS Winsock compatible header
1143 - GDI32: Prelimary RGB 555 to RGB 565 conversion in SetDIBitsToDevice
1144 (will be rewritten in assembly for better performance)
1145 (for RealPlayer videos in 16 bits mode)
1146 BitBlt fix (return after dibsection blit -> fixes Quake 2)
1147 Added MMX RGB conversion.
1148 - USER32: Added export for OS2ToWin32Handle
1149 - COMDLG32: Merged with latest Wine version (20000109)
1150 - INCLUDE\WIN: Fixes to compile comdlg32 in C mode
1151 (will be rewritten in assembly for better performance)
1152 (for RealPlayer videos in 16 bits mode)
1153 BitBlt fix (return after dibsection blit -> fixes Quake 2)
1154
1155 2000-02-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
1156 - OPENGL: Ported SGI GLUT sources + Opengl update
1157
1158 2000-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
1159 - GDI32: Cleaned up
1160 Fixes for dib section apis. RealPlayer 7 can play videos
1161 now (correct in 24 bps mode; upside down and wrong colors
1162 in 16 bps mode)
1163
1164 2000-02-01: Knut Stange Osmundsen <knut.stange.osmundsen>
1165 - Pe2Lx: Makefile should be working again.
1166 - KERNEL32: RegisterPe2LxDll - no detach is done for Pe2Lx/Win32k DLLs.
1167 This is a temporary fix.
1168
1169 2000-02-01: Patrick Haller <phaller@gmx.net>
1170 - SHELL32: Added PathSkipRootAW
1171
1172 2000-02-01: Jens Wiessner <wiessnej@rfi.de>
1173 - NTDLL: Updated .def file (similar to NT 4 SP6) + bugfix for impdef
1174
1175 2000-01-31: Sander van Leeuwen <sandervl@xs4all.nl>
1176 - USER32: GetDCEx with window handle 0 fails in Windows 98; now it also
1177 returns an error in Odin.
1178 GetWindowDC & GetDC use the desktop window handle if hwnd == 0
1179 (before calling GetDCEx)
1180 - GDI32: Set dibsection bitmap data to 0 when allocating it.
1181
1182 2000-01-30: Sander van Leeuwen <sandervl@xs4all.nl>
1183 - PELDR: Fixed error messages for images without fixups (peldr.dll no
1184 longer required)
1185 - GDI32: Removed wrong bugfix for GetDIBits (breaks Lotus Notes)
1186 - USER32: Don't check for window visibility when calling SetWindowPos
1187 in SetMenu. (fixes menu in standard minesweeper)
1188 (NOTE: May need to call SetWindowPos with SWP_FRAMECHANGED
1189 when showing a window (see Wine code))
1190 Put back GetMenuStringA fix (return length of string if string pointer
1191 or size parameter == 0) (almost fixes Realplayer 7 menu)
1192
1193 2000-01-29: Sander van Leeuwen <sandervl@xs4all.nl>
1194 - GDI32: Save and restore FPU control word when calling
1195 Open32's DrawText. DrawText trashes it which causes drawing
1196 problems in RealPlayer 7.
1197 - USER32: Call DrawTextA in uitools.cpp, not Open32's DrawText.
1198 Fix for SetWindowPos for showing hidden windows
1199 (call ShowWindow) -> fixed non-visible button bar in mIRC
1200 Don't set WS_VISIBLE on by default. Windows are made visible
1201 during creation by calling ShowWindow.
1202 Call UpdateWindow for client window, not the frame.
1203 - INCLUDE\WIN\wingdi.h: Added GdiFlush declaration
1204 - INCLUDE\makefiles: Added c/c++ definitions for win32 apps (without
1205 -D__WINE__ so you don't need to specify whether you use the ascii
1206 or unicode version of a win32 api)
1207
1208 2000-01-29: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
1209 - KERNEL32: Added GlobalWire/GlobalUnwire
1210
1211 2000-01-28: Sander van Leeuwen <sandervl@xs4all.nl>
1212 - GDI32: Wrong return values for GetDIBits & SetDIBitsToDevice
1213 (nr of scan lines copied; not true/false)
1214 - USER32: Don't call default frame handler for WM_ADJUSTWINDOWPOS
1215 (fixes window resize when playing videos in RealPlayer v7 &
1216 dragging titlebar in Professional Mine Sweeper)
1217
1218 2000-01-28: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
1219 - Win32k: Heap is splitted into a swappable and a resident heap.
1220 Fixups are now applied when a page is loaded from disk.
1221 This is done by overloading the kernel function called
1222 (_)ldrEnum32bitRelRecs. This should improve performance a lot!
1223
1224 2000-01-27: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
1225 - OPENGL: First version of opengl implementation
1226
1227 2000-01-27: Sander van Leeuwen <sandervl@xs4all.nl>
1228 - USER32: Fixed FS corruption in OSLibPostThreadMessage
1229 Send WM_CHILDACTIVATE to child windows (not only
1230 to MDI children) instead of WM_ACTIVATE
1231 - SHELL32: Fixed FS corruption in DragAcceptFiles
1232
1233 2000-01-26: Yuri Dario <mc6530@mclink.it>
1234 - INCLUDE\WIN: Additions & changes for compiling Opera.
1235 - many dlls: create correct library (impdef)
1236
1237 2000-01-26: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
1238 - GDI32: Changes for Opengl support
1239
1240 2000-01-26: Christoph Bratschi <cbratschi@datacomm.ch>
1241 - USER32: fixed WM_MOVE, MsgFormatFrame and WM_WINDOWPOS* to use parent
1242 coordinates
1243 changed min frame size
1244 - COMCTL32: fixed wrong progress frame
1245
1246 2000-01-26: Sander van Leeuwen <sandervl@xs4all.nl>
1247 - OLEAUT32: Don't create logfile when logging is turned off
1248 - PELDR: Don't modify cmd line in PIB structure
1249 - INCLUDE: Removed string.h.
1250 - KERNEL32: Added workaround for OS/2 DosSetMem bug in VirtualAlloc
1251 (if memory is reserved, set read & write page flags)
1252
1253 2000-01-25: Sander van Leeuwen <sandervl@xs4all.nl>
1254 - PELDR/KERNEL32: Allocate low memory at right address and with right size
1255 in peldr.dll (fixes install of Windows Media Player)
1256 - KERNEL32: Print thread id for each log message
1257
1258 2000-01-22: Michal Necasek <mike@mendelu.cz>
1259 - DINPUT: Fixes + basic functionality is complete; enough for many games
1260
1261 2000-01-21: Sander van Leeuwen <sandervl@xs4all.nl>
1262 - USER32: Put back old WM_MOVE, MsgFormatChanged & OSLibSWPToWINDOWPOSFrame
1263 Previous changes broke many apps (VPBuddy, MIrc32)
1264 Don't update window if style changes (responsibility of the app)
1265 Store window menu & id in same variable (fixes clock ->
1266 double click on analog window -> titlebar & menu gone; menu
1267 used to stay there)
1268 Put back WM_CALCVALIDRECT code in pmwindow. Fixes updates
1269 of clock window (who's class has CS_H/VREDRAW style).
1270 - KERNEL32: Fixed image loading for resource lookup only (don't care
1271 where those images are loaded as we only use it to query
1272 the version resource; so base address doesn't matter)
1273 (-> RealPlayer 7 installs now)
1274
1275 2000-01-20: Sander van Leeuwen <sandervl@xs4all.nl>
1276 - KERNEL32: Disabled creation of pe_x.log if logging disabled
1277 Only get codepage once from odin.ini.
1278
1279 2000-01-20: Vit Timchishin <tvv@sbs.kiev.ua>
1280 - KERNEL32: Codepage bugfix & unicode translation changes (heapstring.cpp)
1281 - GDI32: Added codepage support for CreateCompatibleDC
1282
1283 2000-01-20: Christoph Bratschi <cbratschi@datacomm.ch>
1284 - USER32: fixed WM_CONTEXTMENU
1285 dispatch WM_MOUSEMOVE in menu loop
1286
1287 2000-01-18: Sander van Leeuwen <sandervl@xs4all.nl>
1288 - USER32: Removed 'old' user32 and replaced it with the new one
1289 Call default window proc when DefMDIChildProcA/W is called
1290 for a non-MDI window.
1291 Fixed menu check & submenu marks painting
1292 - KERNEL32: Increased shared heap reserve size to 512 kb
1293 - SHELL32: Display Odin logo in Shell about dialog box
1294
1295 2000-01-18: Jens Wiessner <wiessnej@rfi.de>
1296 - WINMM\WAVEMAP
1297 Updated to Wine level 20000109 + corrected compile
1298 - MCICDA: ported MCICDA.DLL from Wine 20000901 (Linux cdrom calls stubbed
1299 so it doesn't work)
1300
1301 2000-01-17: Sander van Leeuwen <sandervl@xs4all.nl>
1302 - USER32\NEW: Added basic support for DInput WM_CHAR notification
1303 (the rest needs to be done in dinput.dll)
1304 Use KEYBOARD_Enable user32 export to (un)register WM_CHAR
1305 handler. (WNDPROC type) It's called when a WM_CHAR message
1306 arrives for an Odin window with hwnd, msg, wParam & lParam.
1307 - DINPUT: Fixed bugs reported by Michal Necasek
1308
1309 2000-01-16: Christoph Bratschi <cbratschi@datacomm.ch>
1310 - USER32/NEW: implemented sysmenu commands: SC_SIZE and SC_TASKLIST
1311 fixed WM_MOVE
1312 changed HTCAPTION system menu position
1313 changed maximized window position
1314 don't move/size maximized windows
1315
1316 2000-01-15: Jens Wiessner <wiessnej@rfi.de>
1317 - TWAIN_32: Update
1318 - WINMM\MCIANIM,MCIAVI32,MCISEQ,MCIWAVE,MIDIMAP
1319 Updated to Wine level 20000109 + corrected compile errors
1320 - WINMM: Ported Wine wave mapper.
1321
1322 2000-01-15: Sander van Leeuwen <sandervl@xs4all.nl>
1323 - USER32\NEW: Fixed scroll repaints (never use GetMessage with window
1324 handle as that can prevent WM_PAINTs from being dispatched)
1325 (may need reworking of Get/PeekMessage instead)
1326 ScrollWindow changes
1327 Removed frame drawing 'bugfix'.
1328 Fixed system menu position for child windows (i.e. MDI)
1329 Fixed titlebar tracking for child windows (i.e. MDI)
1330 - KERNEL32: Check for null pointers in lstrcmpA
1331
1332 2000-01-15: Christoph Bratschi <cbratschi@datacomm.ch>
1333 - USER32/NEW: cache menu and caption drawing
1334 changed minimize button position
1335 don't redraw system menu icon in menu.cpp
1336 hilighted menubar items don't have an edge in Win9x
1337 don't open system menu on mouseover if menubar is used and vice versa
1338 show sysmenu on WM_NCRBUTTONUP with HTCAPTION set (todo: position)
1339 use WIN32_STDCLASS2 for windows with CS_SAVEBITS class style
1340
1341 2000-01-14: Christoph Bratschi <cbratschi@datacomm.ch>
1342 - USER32/NEW: added caption clipping for faster window text updates
1343
1344 2000-01-14: Sander van Leeuwen <sandervl@xs4all.nl>
1345 - USER32\NEW: Fixed min/max bug for mdi child windows
1346 Fixed DrawMenuBar (invalidate frame rectangle in
1347 FrameUpdateClient if client rectangle wasn't changed)
1348 Fixed bugs in MsgFormatFrame & SendNCCalcSize
1349 Fixed WM_WINDOWPOSCHANGED translation for frame window (not done yet)
1350 (Winamp works now)
1351 Removed code that's no longer used (subclassed OS/2 frame
1352 controls & OS/2 scrollbar functions etc)
1353
1354 2000-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
1355 - USER32\NEW: WM_ACTIVATEAPP should be sent when another process' window
1356 is activated or deactivated
1357 Send correct thread id for non-Odin windows in WM_ACTIVATEAPP
1358 Set window handle of non-Odin window to window desktop in WM_ACTIVATE
1359 Return window desktop handle for window handle returned by
1360 SetActiveWindow if window is non-Odin.
1361 Fixed activation of windows. (send WM_ACTIVATE when receiving
1362 a WM_WINDOWPOSCHANGED message in pmframe.cpp)
1363 Fixed DrawFrame; bottom & right frame borders now drawn correctly
1364 Fixed scrollbar positioning (style.exe)
1365 Fixed CS_OWNDC for GetDCEx (DCX_WINDOW); don't use a window
1366 DC to save/restore a window's own dc.
1367 Fixed client rectangle problems. Client rectangles
1368 are always in frame coordinates; window rectangles in
1369 screen coordinates. Whenever necessary (i.e WM_MOVE)
1370 client coordinates are converted to coordinates relative
1371 to it's parent client window.
1372 Changed WM_MOVE -> client coordinates relative to parent origin
1373 if child; otherwise relative to screen origin. (needs testing)
1374 (WM_NCCALCSIZE needs to be done as well)
1375 - COMCTL32: Version resource version nrs changed (based on NT 4 SP3)
1376 - KERNEL32: Added DisableLogging & EnableLogging functions to
1377 disable logging in parts of code. Logging will only be
1378 done if the logcount is bigger than 0.
1379
1380 2000-01-12: Christoph Bratschi <cbratschi@datacomm.ch>
1381 - USER32/NEW: fixed WM_CALCVALIDRECTS
1382 activated WM_NCPAINT clipping
1383 added improved frame redraw mechanism
1384
1385 2000-01-12: Sander van Leeuwen <sandervl@xs4all.nl>
1386 - USER32\NEW: Changed client rectangle positioning (not done by PM frame
1387 handler anymore) -> fixes problems with Shell About dialog
1388 and jumping controls when resizing (Winhlp32)
1389 Fixed menu tracking for different submenus
1390 Fixed delayed repaints of invalidated menu rectangles
1391 Ported Wine messagebox code. (for GUI consistency)
1392 Fixed bugs in ShowScrollBar. (vert. scrollbar wasn't enabled
1393 in notepad)
1394 Fixed 'frame' control updates (resizing client window in
1395 SetWindowPos for SWP_FRAMECHANGED)
1396
1397 2000-01-11: Jens Wiessner <wiessnej@rfi.de>
1398 - TWAIN_32: Bugfix (removed test code)
1399
1400 2000-01-11: Christoph Bratschi <cbratschi@datacomm.ch>
1401 - USER32/NEW: fixed AdjustWindowRectEx
1402
1403 2000-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
1404 - USER32\NEW: Put nonclient code in win32wbasenonclient.cpp
1405 Removed hardcoded dependancy on shell32; load it on-demand
1406 Fixed LoadBitmap (OBM_RADIOCHECK was missing from system bitmap list)
1407 Fixed wrong return value for OSLibWinGetMsg
1408 Workaround for bug in GDI32 FillRect (menu items painted
1409 black instead of gray) (menu.cpp, MENU_DrawMenuItem)
1410 Applied patch to Wine menu code for RealPlayer
1411 Fixed default return value of DefWndProc (0)
1412 Fixed SetMenu (menus should be set when a window is no child)
1413 Call correct SetMenu function from MsgCreate Win32BaseWindow method
1414 Use WIN32_INNERFRAME frame class for top level windows again.
1415 (VPBuddy repaint problems were solved by using this class)
1416
1417 2000-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
1418 - USER32: Fixed message translation for WM_TIMER with no window handle or timer proc
1419 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
1420 - WINMM: Fixed wrong error code for waveOutOpen & waveOutGetDevCaps when
1421 there's no audio device
1422 - USER32\NEW: Fixed message translation for WM_TIMER with no window handle or timer proc
1423 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
1424 or button down/up message translation.
1425 Fixed LoadBitmap (only load from user32 if it's a system bitmap)
1426 Added WM_NCACTIVATE message generation
1427 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
1428 Changed GetSystemMenu; added method to Win32BaseWindow class
1429 (destroy old menu if present and switch back to default system
1430 menu if bRevert = TRUE; needs changes in non-client code)
1431
1432 2000-01-10: Christoph Bratschi <cbratschi@datacomm.ch>
1433 - USER32/NEW: activated menu code
1434
1435 2000-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
1436 - USER32: Added border size for top-level windows in OSLibWinConvertStyle
1437 (borders are not drawn correctly)
1438 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (don't update
1439 client/window rectangle when size nor position have changed)
1440 Fixed out of sync rectWindow. (children don't get notified of
1441 parent position change -> rectWindow (in screen coord.) not updated)
1442 Fixed LoadBitmap for system bitmaps
1443 Fixes for win32 titlebar + added win32 system menu
1444 System menu commands now work
1445 Fixed repaint problem for win32 titlebar
1446 Added Christoph's gradient filled title bars code
1447 For (experimental) win32-like windows add this to odin.ini:
1448 [CUSTOMIZATION]
1449 OS2Look=0
1450
1451 [COLORS]
1452 UseWinColors=1
1453
1454 2000-01-09: David Raison <djr@lemur.co.uk>
1455 - OLEAUT32: Typelib - Updated TKIND_ALIAS handling.
1456
1457 2000-01-09: Christoph Bratschi <cbratschi@datacomm.ch>
1458 - USER32/NEW: implemented scrollbar nc handling
1459 windows without menus work now fine
1460 implemented gradient filled title bars
1461
1462 2000-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
1463 - USER32: ModifyMenuA bugfix (changing menu ids didn't work)
1464 OSLibGetMsg bugfix + WM_QUIT translation fix
1465 OSLibGetMenuItemRect fix (y coordinate conversion)
1466 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
1467 or button down/up message translation.
1468 - OLE32/OLEAUT32/OLESVR32/OLEDLG/OLECLI32:
1469 Added Wine-like license that supercedes the main Odin license
1470 - CRTDLL: Fixed many register based floating point exports (CRTDLL__CIcos,
1471 CRTDLL__CIatan etc etc)
1472
1473 2000-01-08: Jens Wiessner <wiessnej@rfi.de>
1474 - CRTDLL: Compile fix
1475
1476 2000-01-08: Patrick Haller <phaller@gmx.net>
1477 - SHELL32: Update: to WINE level 2000/01/08
1478 - KERNEL32: Add: stub for GetDiskFreeSpaceExAW
1479
1480 2000-01-06: Christoph Bratschi <cbratschi@datacomm.ch>
1481 - GDI32: added PatBlt support for negative width/height
1482
1483 2000-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
1484 - ADVAPI32: Implemented StartServiceCtrlDispatcherA/W
1485 Faked RegisterServiceCtrlHandlerA/W (TODO)
1486 Partly implemented SetServiceBits/SetServiceStatus
1487 Improved QueryServiceStatus
1488 Call RtlCreateAcl in InitializeAcl
1489 - LZ32: Create correct library
1490 - CRTDLL: Fixed CRTDLL__wcsnicmp (use Wine version)
1491 - VERSION: Fixed VerQueryValue32A and merged with latest Wine sources
1492 (991212) (-> fixes errors in RealPlayer)
1493 - USER32: GetMenuStringA fix (return length of string if string pointer
1494 or size parameter == 0)
1495
1496 2000-01-05: Jens Wiessner <wiessnej@rfi.de>
1497 - TWAIN_32: Update
1498
1499 2000-01-05: Christoph Bratschi <cbratschi@datacomm.ch>
1500 - USER32/NEW: single window works now
1501
1502 2000-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
1503 - KERNEL32/NTDLL: Partially implemented NtOpenThreadToken
1504 (should be changed)
1505 MS Office 2000 install (first part) almost working.
1506 (installs windows installer as system service)
1507 - OLEAUT32: Typelib bugfix for MS Office 2k install
1508 - odin_ini.txt: Added information about CODEPAGES & TWAIN section
1509
1510 2000-01-05: David Raison <djr@lemur.co.uk>
1511 - OLEAUT32: LHashValOfNameSys(A)
1512
1513 2000-01-04: Jens Wiessner <wiessnej@rfi.de>
1514 - TWAIN_32: Created twain dll for usage with CFM Twain for OS/2.
1515
1516 2000-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
1517 - USER32: InsertMenu bugfix (RealPlayer calls InsertMenu with flag 0 & pos -1)
1518 Delete old region in SetWindowRegion
1519
1520 2000-01-03: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
1521 - KERNEL32: Named pipe updates & bugfixes
1522
1523 2000-01-03: Jens Wiessner <wiessnej@rfi.de>
1524 - LZ32/TAPI32: Updated def files to match NT 4 SP6
1525 - MSVCRT: Updated def files + MSVCRT40 version info
1526 - WINMM: Added Wine's MCI dlls (not compiled as this requires
1527 a working MCI subsystem in winmm and a redesign of
1528 wave & midi)
1529
1530 2000-01-03: Sander van Leeuwen <sandervl@xs4all.nl>
1531 - LZ32: Cleaned up .def file (don't import directly) & removed
1532 debugtools.h
1533 - USER32: Fixed PostThreadMessage + bugs in GetMessage
1534 - KERNEL32: Set hmq & hab THDB values for newly created
1535 threads (hmq not correct now)
1536
1537 2000-01-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
1538 - KERNEL32: Started implementing named pipe apis
1539
1540 2000-01-02: David Raison <djr@lemur.co.uk>
1541 - OLEAUT32: Typelib fixes - Custom Data & Default values.
1542 Added private logging to tlib_n.log when reading a TLIB.
1543 (Should clarify what is being read & why)
1544 Now supports embedded named TLIBS in the format
1545 <path>\<libname>\<id> (required for VB6, etc.)
1546 Preparatory work to reduce dependance on
1547 current file position to enable delaying parsing
1548 data until it is requested by user.
1549
1550 2000-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
1551 - USER32: Implemented Set/GetWindowRgn (not activated)
1552 - KERNEL32: Fixed Odin zombie processes when there's a trap inside
1553 vfprintf during logging.
1554 Cleaned up file io procedures in oslibdos.cpp
1555
1556 2000-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
1557 - USER32: Workaround for crash in Lotus Notes when switching to a new
1558 view (PM sends WM_WINDOWPOSCHANGED msg after DestroyWindow
1559 has been called for a window -> don't dispatch this msg)
1560
Note: See TracBrowser for help on using the repository browser.