source: trunk/changelog@ 5537

Last change on this file since 5537 was 5537, checked in by bird, 25 years ago

* empty log message *

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