source: trunk/changelog@ 3867

Last change on this file since 3867 was 3867, checked in by sandervl, 25 years ago

* empty log message *

File size: 6.8 KB
Line 
1 /* $Id: changelog,v 1.1039 2000-07-19 23:46:51 sandervl Exp $ */
2
3 2000-07-19: Sander van Leeuwen <sandervl@xs4all.nl>
4 - INCLUDE\makefiles
5 SRC\*\makefile
6 ODINCRT
7 Build different odincrt for debug & release build (odincrtd & odincrt)
8 Odin dlls now link with correct version
9 - GDI32: Wrapper rewrite for region apis
10 Changed export for user32 (uses stdcall calling convention now
11 to avoid problem when using debug user32 with retail gdi32)
12 - DOC\Readme.txt
13 Updated installation instructions
14 - TOOLS\INSTALL\odin.cmd
15 Updated script for new doc directory
16
17 2000-07-18: Yuri Dario <mc6530@mclink.it>
18 - INCLUDE\win:
19 Compilation fixes for Opera
20 - USER32: Extra logging information
21 Fixed sending WM_PARENTNOTIFY in ::DestroyWindow
22
23 2000-07-18: Sander van Leeuwen <sandervl@xs4all.nl>
24 - WINMM: If waveOutSetVolume called with NULL waveout handle, use
25 that volume as the default for newly created streams.
26 (fixes volume in RealPlayer 7)
27 - KERNEL32: Fixed old unload order bug (causes a crash when quitting
28 RealPlayer 7); increase dynamic library count after calling
29 dll entrypoint with DLL_PROCESS_ATTACH. (used to be before;
30 -> wrong unload order of RPAP3260 & PNRS3260)
31 Call dll entrypoint with DLL_PROCESS_DETACH even when
32 thread library calls disabled.
33
34 2000-07-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
35 - KERNEL32: APIs are to be placed should have ordinal less than 1200
36 - even if they don't belong in the dll but just happend to be
37 implemented there. The reason is for humans and for
38 documentation tools to be able to tell which exports are APIs
39 and which are internal Odin32 function/APIs.
40 - div: Added some missing $Id keywords.
41 - database: Trying to make the database more useful. Extracting more
42 data from the source files.
43 According to the doc\ToDo file we're to write structured
44 and well documented code. This database is indetended to
45 make the documentation (++) browsable. (PHP)
46
47 2000-07-17: Patrick Haller <phaller@gmx.net>
48 - KERNEL32: fixed ReadFile/WriteFile bugfix
49 fixed return codes for HMWaitForSingleObject
50
51 2000-07-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
52 - Win32k: Created a development branch called "Grace" and checked my
53 current code in into it. (This is the reason why there are
54 some new files in the src/win32k tree.)
55
56 2000-07-15: Sander van Leeuwen <sandervl@xs4all.nl>
57 - USER32: XWing vs Tie Fighter fix broke RealPlayer 7 setup (missing buttons)
58 -> rewrote RDW_INVALIDATE code in RedrawWindow to work for
59 both applications
60 - KERNEL32: Added extra check in isPEImage method
61 lpNumberOfBytesRead/Written can be NULL in Read/WriteFile
62 - PELDR: Fix for arguments with quotes (first and last quote removed)
63 (i.e. pe rnuninst "RealNetworks|RealPlayer|6.0| -i -p")
64 Fix for exe name with dir containing spaces
65
66 2000-07-12: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
67 - KERNEL32: Implemented handlemanager support for named and unnamed pipes
68
69 2000-07-10: Sander van Leeuwen <sandervl@xs4all.nl>
70 - KERNEL32: Don't try to search for resources if the module doesn't contain any
71
72 2000-07-09: Patrick Haller <phaller@gmx.net>
73 - doc: Moved several documents to the new doc directory and
74 created initial version of "ToDo.txt". We should place
75 our open tasks in there for better overview and to be able
76 to assign priorities and people to them.
77
78 2000-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
79 - NTDLL: Bugfix for NtQueryInformationToken (TOKEN_USER); updated
80 with latest Wine code (TODO: NTDLL needs to be resynced)
81
82 2000-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
83 - KERNEL32: Store user default language in thread database struct
84 Set/GetThreadLocale change/return this LCID value
85 Fixed EnumSystemLocalesA/W; now returns default user language id
86 (in text) (TODO: should return all supported locales)
87 - KERNEL32/GDI32/USER32: Changed/fixed calls to strncpy (for 0 termination)
88
89 2000-07-06: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
90 - ODINCRT: Fixed wrong implementation of strncpy; do not 0 terminate
91 string unless length < length parameter
92 (this is correct behaviour according to C library manual)
93
94 2000-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
95 - KERNEL32: Unstubbed CopyFileExA/W (calls CopyFileA/W; not properly implemented)
96 Unstubbed CreateDirectoryExA/W (calls CreateDirectoryA/W; not properly implemented)
97 Fixed GetShortPathNameA/W; don't touch short path parameter if
98 it's NULL; behaviour (as seen in NT 4, SP6):
99 - converts long filename to 8.3 short filname (TODO: not yet done here!)
100 - fails on volume that doesn't support 8.3 filenames
101 - if lpszShortPath 0 or cchBuffer too small -> return required length
102 (INCLUDING 0 terminator)
103 - if lpszLongPath == NULL -> ERROR_INVALID_PARAMETER (return 0)
104 - if lpszLongPath empty -> proceed as if nothing is wrong
105 (Wine claims it sets last error to ERROR_BAD_PATHNAME)
106 - does NOT clear the last error if successful!
107 - if successful -> return length of string (excluding 0 terminator)
108 - USER32: Fixed adding windows to tasklist (done too late)
109 - GDI32/USER32:
110 - Rewrote Set/GetViewportExtEx, Set/GetMapMode & moved them
111 from gdi32 to user32
112
113 2000-07-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
114 - KERNEL32: Added IsDebuggerPresent (debug.cpp). Returns FALSE, but by
115 SETing ODIN32.DEBUGGERPRESENT=1 it will return TRUE. (Some
116 application might issue calls to OutputDebugString if they
117 think they're being debugged.)
118 Moved OutputDebugString(A/W) to debug.cpp.
119
120 2000-07-02: Sander van Leeuwen <sandervl@xs4all.nl>
121 - RICHED32: Fixed bug when creating edit window (needs to be WS_CHILD)
122 - USER32: Fixed moving of child windows in MsgFormatFrame & move
123 child windows if only client rectangle changes
124 (fixes Acrobat Distiller window)
125 - SHELL32: Put back check for registration of ShellView window class
126 -> RegisterClass now fails if already registered
127 (fixed openfile dialogs)
Note: See TracBrowser for help on using the repository browser.