source: trunk/changelog@ 5551

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

* empty log message *

File size: 7.6 KB
Line 
1/* $Id: changelog,v 1.1367 2001-04-19 08:31:51 sandervl Exp $ */
2
3 2001-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o Fail properly when a dll can't be found or loaded.
5 - SHELL32: o Ported latest shlfileop.c from Wine. (include functional
6 SHFileOperation).
7 TODO: Merge the rest.
8
9 2001-04-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
10 - dailybuild:
11 o Adjusted to new build pattern.
12 o Copy all builds to local archive directory.
13 - tools\install:
14 o Added Xx2Lx.
15 - Readme.txt:
16 o Changed Pe2Lx to Xx2Lx.
17
18 2001-04-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
19 - Unicode: o Minor addjustments to makefile. CFLAGS is the correct
20 place to addjust flags for C compilation. And flags
21 are compiler specific.. wrapped it in CCENV checks.
22 - Tools\Common:
23 o Revamped a couple of things - introduced interface classes.
24 Not quite statisfied yet, but it's working.
25 o Starting to make an kFileSDF class to access .SDF files
26 SDF = Structure Definition Files - used by PMDF. Contains
27 information about structures (struct _somthing_s).
28 Needs this information for win32k.
29 - Tools\Database:
30 o Recreate makefiles, new style. GD is not compiled any longer.
31 o Addjusted APIImport to fit changes in Tools\Common.
32 - Tools\ImpLib:
33 o Addjusted code to fit changes in Tools\Common.
34
35 2001-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
36 - KERNEL32: o Fix for LoadLibrary(Ex)W. (free must not be called for
37 converted strings; use FreeAsciiString instead)
38 - TOOLS\WRC:o Ported latest wrc. (has proper ascii -> unicode conversion
39 and more features)
40 o Open files in binary mode only; fixes load failures for
41 shell32 icons (newlines were translated; bytes removed from
42 icon data)
43 - DPLAYX: o Compile fixes for header changes.
44 - include\odin.h:
45 o Changes for wrc. It chokes on calling conventions.
46 o Got rid of annoying 'unused struct' warnings
47
48 2001-04-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
49 - DSOUND: o Removed pmwinx.lib from makefile. Wasn't used; and it had
50 bad path (ie. no path).
51
52 2001-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
53 - KERNEL32: o RegQueryValueExA/W broken. Reserved & type parameters reversed.
54 (fixes crash in Notepad and possibly solves many other problems)
55 - USER32: o SetCapture change; return immediately when new capture window
56 is the same as old one.
57 (fixes high cpu load in PowerDVD when holding mouse cursor over
58 control window; PM kept sending WM_MOUSEMOVE messages)
59 o Rewrote ClipCursor & GetClipCursor
60 o Set PM style flags when WS_CLIPCHILDREN or WS_CLIPSIBLINGS
61 flag is changed by the application using SetWindowLong.
62 (fixes Lotus Notes size bar & upper left rectangle painting)
63
64 2001-04-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
65 - configure,win32k:
66 o Added option to Configure.cmd, -w, which omittes building
67 of Win32k.sys.
68
69 2001-04-12: Sofiya (sofiya@din.or.jp)
70 - USER32: o Fixes for DBCS strings
71
72 2001-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
73 - PELDR: o Print module name that contributed to the failure of
74 loading kernel32.
75
76 2001-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
77 - WINMM: o Clean up DirectAudio thread properly.
78
79 2001-04-05: Sofiya (sofiya@din.or.jp)
80 - KERNEL32: o WideCharToMultiByte/MultiByteToWideChar changes
81 - srclen <= -1 -> calculate length (docs say only for -1)
82 - source and destination pointer can't be the same (as docs also claim)
83 (verified in Windows ME & Windows NT4, SP6)
84
85 2001-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
86 - USER32: o Rewrote ShowCursor
87
88 2001-04-04: Sander van Leeuwen <sandervl@xs4all.nl>
89 - KERNEL32: o Removed AsciiToUnicode* & UnicodeToAscii* functions
90 o lstrcpynWtoA & lstrcpynAtoW fixes
91 o Removed WideCharToLocal & LocalToWideChar
92 - INCLUDE\unicode.h:
93 o AsciiToUnicode* & UnicodeToAscii* functions implemented
94 with functions in heapstring.h
95 - * o Compile fixes due to header changes
96
97 2001-04-03: Sander van Leeuwen <sandervl@xs4all.nl>
98 - DDRAW: o Only reset physical palette in DirectDraw destructor if
99 palette was really changed.
100 (gets rid of excessive screen redraws in DXView)
101 - KERNEL32: o Return GetUserDefaultLCID in GetSystemDefaultLCID
102 o Return GetUserDefaultLangID in GetSystemDefaultLangID
103 o Ported Wine's codepage, string & unicode functions (codepage.cpp)
104 o Ported Wine's codepage unicode conversion functions & tables
105 (kernel32\unicode)
106 o Rewrote string functions (heapstring.cpp) to use new unicode
107 functions.
108 - USER32: o Ported Wine's Char* functions
109 TODO: IsCharAlphaA & IsCharAlphaNumericA
110
111 2001-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
112 - USER32: o Mouse message translation fix (check capture)
113 o Turn off WS_CAPTION style for dialogs with DS_CONTROL flag set
114 (fixes file dialogs with OFN_ENABLETEMPLATE style)
115 Verified behaviour in NT4, SP6 with DSShow sample
116 - about dialog with DS_CONTROL -> no titlebar
117 - file open dialog without DS_CONTROL -> titlebar + moveable
118 2nd dialog
119 o Temporary workaround for file dialogs with template dialog child.
120 They don't redraw when switching directories. For some reason
121 the new child's (syslistview32) update rectangle stays empty
122 after its parent is made visible with ShowWindow
123 TODO: find real cause
124 - MSACM32: o Ported latest Wine version
125 - WINMM: o Ported latest Wine driver.c (necessary for msacm32 update)
126 - DDRAW: o Back buffer fix; setup surface descriptor structure and
127 don't clear DDSCAPS_BACKBUFFER flag
128 (fix for WinDVD)
129 o SurfLock: hEvent can be 0 as long as the DDLOCK_EVENT flag
130 isn't set.
131 Size of lpSurfaceDesc can be sizeof(DDSURFACEDESC2).
132 (fix for WinDVD)
133 - KERNEL32: o Check executable type (VIO/GUI) in CreateProcess and launch
134 correct version of the pe loader (PE/PEC)
135
136 2001-04-02: Michal Necasek <michalnec@volny.cz>
137 - KERNEL32: o Fix for importing from executable
138 (fixes Blade Runner)
139 - TESTAPP\EXCEPTIONS:
140 o Small test apps to test exception handling
141
142 2001-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
143 - WININET: o Added missing exports to wininet.def
144 - KERNEL32: o Removed yesterday's codepage change.
145 (breaks Opera)
146 - WINMM: o Increased nr of DART buffers used for wave playback
147 - ODININST o Moved kernel32 init code into odininst
148 o Create [HKEY_USERS\.DEFAULT\Control Panel\International]
149 registry key with international settings
150 - USER32: o Create dialog controls with CreateWindowExW
151 o Use correct SendMessage(A/W) call during CreateWindow
152
Note: See TracBrowser for help on using the repository browser.