1 | 0.6.21632 (2011-05-12)
|
---|
2 | ----------------------
|
---|
3 |
|
---|
4 | Dmitriy Kuminov:
|
---|
5 | - kernel32: Fixed: Parsing .SYM files when printing the stack trace in debug
|
---|
6 | mode was not thread safe which caused garbage and nested crashes.
|
---|
7 | - kernel32: SEH: Fixed a number of bugs in __try/__catch hangling that could
|
---|
8 | cause a bunch of various crashes when unwinding the Win32 exception chain
|
---|
9 | (usually at process termination, as a result of both a fatal exception or
|
---|
10 | a clean exit).
|
---|
11 | - kernel32: Do not use ODINCRT (VACRT) printf when handling XCPT_UNWIND in
|
---|
12 | debug mode since it's known to produce deadlocks.
|
---|
13 | - kernel32: To complete the Win32 exception chain unwind support, make sure
|
---|
14 | it is unwound when the thread terminates itself with ExitThread or
|
---|
15 | ExitProcess etc. before removing its exception handlers from stack.
|
---|
16 | - wgss: Added a hack that makes sure the system lock is released when the
|
---|
17 | thread terminates. This avoids deadlocks at process termination leading to
|
---|
18 | hanging non-killable zombie processes, which is especially frequent on SMP
|
---|
19 | systems.
|
---|
20 | - gdi32: Fixed broken TextOut? API family that would draw text flipped along
|
---|
21 | the base line.
|
---|
22 | - comdlg32: Made PrintDlg?() use the native PM print dialog instead of the
|
---|
23 | Win32 clone. This looks much more native and gives access to all printer
|
---|
24 | settings.
|
---|
25 | - minivcrt: Fixed _fullpath()/_wfullpath() which was broken in many regards
|
---|
26 | (i.e. it would eat path components starting with "." and "..").
|
---|
27 |
|
---|
28 | 0.6.21606 (2011-03-28)
|
---|
29 | ----------------------
|
---|
30 |
|
---|
31 | Dmitriy Kuminov:
|
---|
32 | - general: Workaround the OS/2 loader bug in LIBPATHSTRICT=T mode by always
|
---|
33 | loading DLLs using the base name with no extension (e.g. "MDM" instead of
|
---|
34 | "MDM.DLL"). This fixes various problems like no sound in strict mode.
|
---|
35 | - general: A big bunch of fixes (headers and so on) for SDK mode.
|
---|
36 | - odincrt: Fixed a tiny typo in DosQueryModuleHandleStrict() that could
|
---|
37 | sometimes cause 100% CPU load at application startup eventually leading to
|
---|
38 | SYS1808 due to stack overflow.
|
---|
39 | - kernel32: VirtualQuery: Succeed with MEM_FREE for one page when querying
|
---|
40 | an unallocated address in the private arena (for which DosQueryMem fails
|
---|
41 | with ERROR_INVALID_ADDRESS). This will fix applications relying on proper
|
---|
42 | error reporting.
|
---|
43 | - kernel32: Report ERROR_MOD_NOT_FOUND from LoadLibrary() when it fails to
|
---|
44 | load a DLL due to missing import modules, to mimic Win32 behavior.
|
---|
45 | - tools/wrc: Restored generating GAS output by default. MASM output is now
|
---|
46 | generated by specifying the -M option.
|
---|
47 | - shell32: Shell_NotifyIcon(): Create a copy of the supplied icon because
|
---|
48 | the caller may DestroyIcon() on it at any time (which would cause systray
|
---|
49 | to display an empty rectangle). This matches Windows behavior.
|
---|
50 | - shell32: Implemented support for xsystray (Extended System Tray widget for
|
---|
51 | XCenter) which provides more functionality (in particular,
|
---|
52 | "TaskbarCreated" message broadcasting).
|
---|
53 |
|
---|
54 | 0.6.21577 (2011-02-21)
|
---|
55 | ----------------------
|
---|
56 |
|
---|
57 | Dmitriy Kuminov:
|
---|
58 | - iphlpapi: Fixed a crash when building the adapter/interface/address tables
|
---|
59 | due to a bogus ioctl(SIOSTATRT) implementation in OS/2.
|
---|
60 | - kernel32: Implemented generating the high/low index values (using a CRC32
|
---|
61 | and a hash function on the fuill file name) and filling up the volume
|
---|
62 | serial number in a structure returned by GetFileInformationByHandle().
|
---|
63 | - kernel32: Implemented GetVolumePathName() API.
|
---|
64 | - kernel32: Disabled logging exceptions in release builds through RAS since
|
---|
65 | this involves .sym file reading and significantly slows down applications
|
---|
66 | that use exception handlers like traps for implementing application logic.
|
---|
67 | - kernel32: Fixed a bunch of OSLibDos* functions dealing with file names
|
---|
68 | that passed ANSI strings to the OS/2 APIs w/o first converting it to the
|
---|
69 | OEM codepage which caused "file not found" errors in various Win32 APIs
|
---|
70 | like GetFileAttributesEx() on file names Cyrillic, umlauts, etc.
|
---|
71 | - winmm: Accept handles returned by mixerOpen() as IDs in mixerGetDevCaps()
|
---|
72 | (according to MSDN) which fixes sound in applications using these IDs.
|
---|
73 | - dsound: Enumerate the default sound device twice in DirectSoundEnumerate()
|
---|
74 | (according to MSDN) to make applications relying on this work.
|
---|
75 |
|
---|
76 | Older Releases
|
---|
77 | --------------
|
---|
78 |
|
---|
79 | 2011-01-12: Dmitry A. Kuminov
|
---|
80 | - minivcrt: Use the own version of _fullpath() instead of the kLIBC one
|
---|
81 | because the latter isn't capable of resolving non-existent paths
|
---|
82 | (it allows only the last component to not exist) and it may also
|
---|
83 | unexpectedly change the current drive of the calling process.
|
---|
84 | - user32: Fixed national character input in a foreign process when an
|
---|
85 | Odin DLL attaches to it (such as Firefox and Flash 10) which was broken
|
---|
86 | in the previous release.
|
---|
87 | - user32: Fixed incorrect code page translation of window title text seen
|
---|
88 | in windows created on threads other than the main GUI thread.
|
---|
89 | - user32: Make GetQueueStatus() return actual message summary in high word
|
---|
90 | instead of the copy of the low word.
|
---|
91 | - user32: Fixed a crash during DnD when the dragged object was moved through
|
---|
92 | the title over the window frame.
|
---|
93 |
|
---|
94 | 2010-12-30: Dmitry A. Kuminov
|
---|
95 | - Deduce Windows time zone from the current TZ setting.
|
---|
96 | - Lots of various fixes and improvements (to be specified later,
|
---|
97 | this is a test build).
|
---|
98 |
|
---|
99 | 2010-09-06: Dmitry A. Kuminov
|
---|
100 | - Lots of various fixes and improvements (to be specified later,
|
---|
101 | this is a test build).
|
---|
102 |
|
---|
103 | 2009-09-21 Andy Willis <abwillis1@gmail>
|
---|
104 | VAC365 updates. Mostly done by Dietrich. Couple by Steven Levine and some by myself.
|
---|
105 | src/odinprof/makefile
|
---|
106 | src/user32/Makefile
|
---|
107 | src/shell32/makefile
|
---|
108 | src/twain_32/makefile
|
---|
109 | src/imm32/makefile
|
---|
110 | src/winmm/mcicda/makefile
|
---|
111 | src/winmm/winmm.mak
|
---|
112 | src/dsound/dsmixer.cpp
|
---|
113 | src/dsound/makefile
|
---|
114 | src/ddraw/makefile
|
---|
115 | src/gdi32/makefile
|
---|
116 | src/winspool/winspool.cpp
|
---|
117 | src/winspool/makefile
|
---|
118 | src/win32k/win32k.tools.mk
|
---|
119 | src/win32k/win32k.mak
|
---|
120 | src/kernel32/kernel32.mak
|
---|
121 | src/kernel32/_ras.cpp
|
---|
122 | src/driverdll/makefile
|
---|
123 | src/libwrap/makefile
|
---|
124 | src/wnaspi32/makefile
|
---|
125 | src/capi2032/makefile
|
---|
126 | src/wsock32/makefile
|
---|
127 | src/odincrt/makefile
|
---|
128 | src/comdlg32/makefile
|
---|
129 | src/libwrap/libwrap0.mak
|
---|
130 | src/libwrap/libwrap1.mak
|
---|
131 |
|
---|
132 |
|
---|
133 | 2004-10-12: Chris Wohlgemuth <cinc@innotek.de>
|
---|
134 | - OLEAUT32:
|
---|
135 | o VarBstrFromDec() and VarDecFromStr() removed from stubs.cpp.
|
---|
136 | These are now implemented in variant.c.
|
---|
137 |
|
---|
138 | 2004-10-11: Chris Wohlgemuth <cinc@innotek.de>
|
---|
139 | - OLEAUT32:
|
---|
140 | o duplicate V_DECIMAL(A) macro removed
|
---|
141 |
|
---|
142 | 2004-10-08: Chris Wohlgemuth <cinc@innotek.de>
|
---|
143 | - KERNEL32: Added RegOpenCurrentUser() to registry.cpp.
|
---|
144 | - OLE32: ifs.c, Added some more comprehensive debug output to the IMalloc interface.
|
---|
145 | compobj.c, Added stub for CLSIDFromProgIDEx().
|
---|
146 | - OLEAUT32: o Added VT_R8 support to VarCmp (SvL)
|
---|
147 | - OLEAUT32: o Rewrote VarNumFromParseNum()
|
---|
148 | o Added VarDecFromStr() from Wine.
|
---|
149 | o VarParseNumFromStr() updated with Wine code
|
---|
150 | o Updated DECIMAL struct (include\win\windef.h) to Wine level.
|
---|
151 | o updated V_DECIMAL(A) macro (oleaut.h) to Wine level.
|
---|
152 | - OLEAUT32: variant.c, Added stubs for:
|
---|
153 | VarDecAdd()
|
---|
154 | VarDecMul()
|
---|
155 | VarDecSub()
|
---|
156 | VarDecAbs()
|
---|
157 | VarDecFix()
|
---|
158 | VarDecInt()
|
---|
159 | VarDecNeg()
|
---|
160 | VarDecRound()
|
---|
161 | VarDecCmp()
|
---|
162 | VarDecCmpR8()
|
---|
163 | VarOr()
|
---|
164 | VarNeg()
|
---|
165 | VarEqv()
|
---|
166 | VarIdiv()
|
---|
167 | VarAbs()
|
---|
168 | VarMod()
|
---|
169 | VarImp()
|
---|
170 | VarFix()
|
---|
171 | VarRound()
|
---|
172 | VarInt()
|
---|
173 | VarFormatNumber()
|
---|
174 | VarFormatPercent()
|
---|
175 | VarWeekdayName()
|
---|
176 | VarMonthName()
|
---|
177 |
|
---|
178 | Added from Wine:
|
---|
179 | VarPow()
|
---|
180 | VarXor()
|
---|
181 | VarAdd()
|
---|
182 |
|
---|
183 | safearray.c:
|
---|
184 | Added stubs for
|
---|
185 | SafeArrayGetRecordInfo()
|
---|
186 | SafeArraySetRecordInfo()
|
---|
187 | SafeArrayCreateEx()
|
---|
188 |
|
---|
189 | Added from Wine:
|
---|
190 | SafeArraySetIID()
|
---|
191 | SafeArrayGetIID()
|
---|
192 |
|
---|
193 |
|
---|
194 | 2004-09-23: Chris Wohlgemuth <cinc@innotek.de>
|
---|
195 | -SHLWAPI: Fix for PathSetDlgItemPathW() by D. Teickner so import of reg files with
|
---|
196 | W98-regedit works (taking sizeof(WCHAR) into account).
|
---|
197 |
|
---|
198 | 2002-06-16: Dmitry Froloff <froloff@os2 >
|
---|
199 | - GDI32: o Fixed font creation for ANSI_CHARSET
|
---|
200 |
|
---|
201 | 2004-05-24: Eugene Romanenko <eros2@os2 >
|
---|
202 | - SHELL32: o Systray integration with XWP
|
---|
203 |
|
---|
204 | 2004-05-24: KO Myung-Hun <komh@chollian >
|
---|
205 | - GDI32: o DBCS updates
|
---|
206 | - IMM32: o Created OS/2 implementation
|
---|
207 | - KERNEL32: o DBCS/IMM updates
|
---|
208 | - USER32: o DBCS/IMM updates
|
---|
209 |
|
---|
210 | 2003-05-11: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
211 | - USER32: o Added wrappers for calling window handlers
|
---|
212 |
|
---|
213 | 2004-05-07: KO Myung-Hun <komh@chollian >
|
---|
214 | - GDI32: o DBCS updates
|
---|
215 |
|
---|
216 | 2004-05-06: Sander van Leeuwen <sandervl@innotek >
|
---|
217 | - COMDLG32: o Update the hDevNames member of the printer dialog structure
|
---|
218 | whenever the user chooses another printer
|
---|
219 |
|
---|
220 | 2004-05-03: knut st. osmundsen <bird-changelog@innotek >
|
---|
221 | - USER32: o Missing clipboard updates
|
---|
222 |
|
---|
223 | 2004-04-30: Sander van Leeuwen <sandervl@innotek >
|
---|
224 | - COMDLG32: o Always turn off collate support
|
---|
225 | - GDI32: o drawSingleLinePoint: wrong pen style checks
|
---|
226 |
|
---|
227 | 2004-04-27: Andy Willis <abwillis@comcast >
|
---|
228 | - IMM32: o Renamed to IMM32OS2
|
---|
229 |
|
---|
230 | 2004-04-19: knut st. osmundsen <bird-changelog@innotek >
|
---|
231 | - USER32: o Changed some critical sections which weren't initiated to
|
---|
232 | VMutex to get automatic initialization.
|
---|
233 | - LIBWRAP: o DosVerifyPidTid.
|
---|
234 |
|
---|
235 | 2004-04-15: Sander van Leeuwen <sandervl@innotek >
|
---|
236 | - USER32: o SetWindowPos: do not check for position and size redundancy
|
---|
237 |
|
---|
238 | 2004-04-08: knut st. osmundsen <bird-changelog@innotek >
|
---|
239 | - INCLUDE: o Merged wingdi.h from current WINE CVS.
|
---|
240 | o Added prototypes for new WGSS APIs.
|
---|
241 | - GDI32: o Corrected a few problems due to wingdi.h merge.
|
---|
242 | o Corrected GetDIBits query mode.
|
---|
243 | - USER32: o Rewrote clipboard code completely.
|
---|
244 |
|
---|
245 | 2004-04-07: Sander van Leeuwen <sandervl@innotek >
|
---|
246 | - KERNEL32: o Profile: flush ini file after write actions
|
---|
247 |
|
---|
248 | 2004-04-06: Sander van Leeuwen <sandervl@innotek >
|
---|
249 | - WINMM: o Automatically disable audio support when any Crystal driver
|
---|
250 | is detected
|
---|
251 | - KERNEL32: o Changed check for number of memory map views
|
---|
252 |
|
---|
253 | 2004-04-02: Sander van Leeuwen <sandervl@innotek >
|
---|
254 | - KERNEL32: o ReadFile/WriteFile: wrong page calculation for memory maps
|
---|
255 |
|
---|
256 | 2004-03-25: Sander van Leeuwen <sandervl@innotek >
|
---|
257 | - GDI32: o LineTo: special case in toWin32LineEnd when inside a path
|
---|
258 | definition
|
---|
259 |
|
---|
260 | 2004-03-24: Sander van Leeuwen <sandervl@innotek >
|
---|
261 | - GDI32: o CreateDIBitmap: added workaround for DIB_PAL_COLORS mode
|
---|
262 |
|
---|
263 | 2004-03-24: Vitali Pelenyov <sunlover@innotek >
|
---|
264 | - KERNEL32: o GetVolumeInformation: check for file system buffer size
|
---|
265 |
|
---|
266 | 2004-03-23: Sander van Leeuwen <sandervl@innotek >
|
---|
267 | - USER32: o MapVirtualKeyA: must convert return value from PM to windows
|
---|
268 | scancodes
|
---|
269 | o OSLibWinTranslateMessage: removed some strange numpad related
|
---|
270 | hacks that caused problems for VK_DECIMAL processing
|
---|
271 |
|
---|
272 | 2004-03-22: Sander van Leeuwen <sandervl@innotek >
|
---|
273 | - COMCTL32: o Rebar: changed resize fix again
|
---|
274 |
|
---|
275 | 2004-03-18: Sander van Leeuwen <sandervl@innotek >
|
---|
276 | - USER32: o RedrawWindow: ignore if window is not visible
|
---|
277 | o Dialog: use CallWindowProcA/W for calling the dialog procedure
|
---|
278 | - SHELL32: o Allow shell links to be placed in arbitrary directories
|
---|
279 |
|
---|
280 | 2004-02-17: knut st. osmundsen <bird-changelog@innotek >
|
---|
281 | - KERNEL32: o Fixed HEAP_strdupW.
|
---|
282 | - USER32: o GpiCreateBitmap() sometimes read too much data, allocate more to
|
---|
283 | prevent hitting the electric fence.
|
---|
284 |
|
---|
285 | 2004-03-17: Sander van Leeuwen <sandervl@innotek >
|
---|
286 | - COMCTL32: o Merged latest Wine rebar and status controls
|
---|
287 | o Status: invalidate window if SBARS_SIZEGRIP and width or
|
---|
288 | height changed
|
---|
289 | o Rebar: resize control to match parent width in WM_SIZE
|
---|
290 |
|
---|
291 | 2004-03-16: Vitali Pelenyov <sunlover@innotek >
|
---|
292 | - ODINCRT: o New os2 fast critical section implementation
|
---|
293 |
|
---|
294 | 2004-03-16: Sander van Leeuwen <sandervl@innotek >
|
---|
295 | - USER32: o Changed SPI_ICONHORIZONTALSPACING & SPI_ICONHORIZONTALSPACING
|
---|
296 | to (75,75)
|
---|
297 | - WINMM: o Check that we aren't overwriting existing data in case
|
---|
298 | we get a lot more audio data than fits in our internal DART
|
---|
299 | buffers.
|
---|
300 | - KERNEL32: o PROFILE_GetSection regression fix (heap corruption)
|
---|
301 | - COMCTL32: o Listview: merged with latest Wine code
|
---|
302 |
|
---|
303 | 2004-03-15: Sander van Leeuwen <sandervl@innotek >
|
---|
304 | - USER32: o GetKeyboardLayoutNameA; use only the low word returned by
|
---|
305 | GetKeyboardLayout to build the keyboard layout string
|
---|
306 | o SystemParametersInfo: added SPI_ICONVERTICALSPACING &
|
---|
307 | SPI_ICONHORIZONTALSPACING
|
---|
308 | o GetSystemMetrics: corrected SM_CXICONSPACING & SM_CYICONSPACING
|
---|
309 | o SystemParametersInfo: added SPI_SETDRAGFULLWINDOWS
|
---|
310 |
|
---|
311 | 2004-03-12: Sander van Leeuwen <sandervl@innotek >
|
---|
312 | - SHELL32: o Disabled Shell_NotifyIconA
|
---|
313 | - USER32: o SPI_GETNONCLIENTMETRICS: corrected caption width and height
|
---|
314 | o WM_EXITSIZEMOVE should be sent after the window position
|
---|
315 | and/or size has been changed.
|
---|
316 | - GDI32: o SetDIBitsToDevice/StretchDIBits; set coloruse to DIB_RGB_COLORS
|
---|
317 | for high (>=15) bpp bitmaps; GPI will crash with DIB_PAL_COLORS
|
---|
318 |
|
---|
319 | 2004-03-12: knut st. osmundsen <bird-changelog@innotek >
|
---|
320 | - KERNEL32: o Added interface to HM for querying the object type.
|
---|
321 |
|
---|
322 | 2004-03-11: Sander van Leeuwen <sandervl@innotek >
|
---|
323 | - USER32: o More WH_MOUSE changes
|
---|
324 |
|
---|
325 | 2004-03-10: Sander van Leeuwen <sandervl@innotek >
|
---|
326 | - USER32: o Added support for WH_MOUSE hook
|
---|
327 |
|
---|
328 | 2004-03-09: Sander van Leeuwen <sandervl@innotek >
|
---|
329 | - GDI32: o SetDIBitsToDevice: fixes for xSrc offset
|
---|
330 |
|
---|
331 | 2004-03-09: Vitali Pelenyov <sunlover@innotek >
|
---|
332 | - GDI32: o SetDIBitsToDevice: fixes for partial blits
|
---|
333 |
|
---|
334 | 2004-02-27: Sander van Leeuwen <sandervl@innotek >
|
---|
335 | - USER32: o Re-assert DC transformation and y-inversion after SetWindowPos
|
---|
336 | o Fixed b&w mouse cursors
|
---|
337 | - GDI32: o SetDIBitsToDevice: fixed bugs when dealing with negative height
|
---|
338 | o StretchDIBits: If biClrUsed equals 0, set it to (1<<bitcount)
|
---|
339 | Disabled DIB_PAL_COLORS workaround
|
---|
340 | o SetDIBitsToDevice: removed Matrix driver bug workaround;
|
---|
341 | - NETAPI32: o Removed all OS/2 Netbios dependencies
|
---|
342 |
|
---|
343 | 2003-02-24: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
344 | - KERNEL32: o CreateProcess fix
|
---|
345 |
|
---|
346 | 2004-02-23: Sander van Leeuwen <sandervl@innotek >
|
---|
347 | - USER32: o Backed out RedrawWindow change
|
---|
348 | o Edit: wrong ScrollWindowEx call; must include SW_ERASE
|
---|
349 | o ScrollWindowEx: set background erase flag for SW_ERASE
|
---|
350 |
|
---|
351 | 2004-02-20: Sander van Leeuwen <sandervl@innotek >
|
---|
352 | - KERNEL32: o Default CPU is set to Pentium if the one in the system isn't recognized
|
---|
353 |
|
---|
354 | 2004-02-19: Sander van Leeuwen <sandervl@innotek >
|
---|
355 | - USER32: o RedrawWindow; wrong check for update region when clearing
|
---|
356 | WM_ERASEBKGND flag.
|
---|
357 |
|
---|
358 | 2004-02-19: KO Myung-Hun <komh@chollian >
|
---|
359 | - KERNEL32: o DBCS fixes for console & resource functions
|
---|
360 |
|
---|
361 | 2004-02-17: Sander van Leeuwen <sandervl@innotek >
|
---|
362 | - GDI32: o CreateDCA: special handling of FILE and FILE: ports
|
---|
363 |
|
---|
364 | 2004-02-16: KO Myung-Hun <komh@chollian >
|
---|
365 | - USER32: o Edit control: DBCS related fixes
|
---|
366 |
|
---|
367 | 2004-02-16: Sander van Leeuwen <sandervl@innotek >
|
---|
368 | - USER32: o EndPaint; fixed region handle leaks
|
---|
369 | - GDI32: o Another region leak in GdiCombineVisRgnClipRgn fixed
|
---|
370 | o DIB Section: flush used the wrong RGB conversion
|
---|
371 |
|
---|
372 | 2004-02-13: Sander van Leeuwen <sandervl@innotek >
|
---|
373 | - KERNEL32: o Allocate memory for the map during CreateFileMapping and
|
---|
374 | free it when the map is destroyed
|
---|
375 |
|
---|
376 | 2004-02-12: Sander van Leeuwen <sandervl@innotek >
|
---|
377 | - GDI32: o PathToRegion failure bugfix + leak fixed
|
---|
378 | o SelectClipPath can fail in printer DCs. Pretend success.
|
---|
379 | - URLMON: o Added HlinkNavigateString, CreateAsyncBindCtx & IsAsyncMoniker stubs
|
---|
380 |
|
---|
381 | 2004-02-11: Sander van Leeuwen <sandervl@innotek >
|
---|
382 | - USER32: o HODIN_PREWINDOWCREATEDA extension added
|
---|
383 |
|
---|
384 | 2004-02-10: Sander van Leeuwen <sandervl@innotek >
|
---|
385 | - KERNEL32: o Added ODIN_SetProcessDword function to change the startup
|
---|
386 | information about size, position and state of the main
|
---|
387 | application window.
|
---|
388 | o Rewrote keyboard hook handler to post messages and swallow
|
---|
389 | the one it gets from PM.
|
---|
390 | - GDI32: o Wrong GdiCopyClipRgn return value
|
---|
391 | o Implemented SelectClipPath
|
---|
392 |
|
---|
393 | 2004-04-04: Platon Fomichev <pfomichev@alarity >
|
---|
394 | - USER32: o Fixed typo in PeekMessageA/W.
|
---|
395 |
|
---|
396 | 2004-01-30: knut st. osmundsen <bird-changelog@innotek >
|
---|
397 | - USER32: o AttachThreadInput implementation (read hack).
|
---|
398 | - OLE32: o Drag & Drop fixes.
|
---|
399 | o Resynced ole2.c with current wine.
|
---|
400 | - various: o Added DEBUG_LOGGING define to indicate logging in order to
|
---|
401 | make release mode logging possible. Changed a few places where
|
---|
402 | DEBUG were used to include/exclude logging related code.
|
---|
403 |
|
---|
404 | 2004-01-29: knut st. osmundsen <bird-changelog@innotek >
|
---|
405 | - KERNEL32: o Parse LANG to figure out the language id.
|
---|
406 | - INCLUDE: o Synced language IDs with current wine.
|
---|
407 | This includes moving them from winnls.h to winnt.h.
|
---|
408 | - WRC: o Synced lang2cps table with wine. (needed due to above header update)
|
---|
409 |
|
---|
410 | 2004-01-21: Sander van Leeuwen <sandervl@innotek >
|
---|
411 | - USER32: o DrawIconEx: handle cyWidth == 0 case correctly
|
---|
412 |
|
---|
413 | 2004-01-20: Sander van Leeuwen <sandervl@innotek >
|
---|
414 | - KERNEL32: o Wrote wrapper for our exception handler to clear the direction
|
---|
415 | flag on entry (reported by Dietrich Teickner)
|
---|
416 | - WINMM: o MCIWAVE.DRV updates from Wine
|
---|
417 | o mciSendCommandW update from Wine
|
---|
418 | o Hardcoded MCI drivers (cdaudio & waveaudio)
|
---|
419 | o Added LGPL license file
|
---|
420 |
|
---|
421 | 2004-01-19: Sander van Leeuwen <sandervl@innotek >
|
---|
422 | - USER32: o Allocate DC for windows with CS_CLASSDC style (one per window)
|
---|
423 |
|
---|
424 | 2004-01-15: KO Myung-Hun <komh@chollian >
|
---|
425 | - GDI32: o Cleanup of text functions
|
---|
426 |
|
---|
427 | 2004-01-15: knut st. osmundsen <bird-changelog@innotek >
|
---|
428 | - DBGWRAP: o Added optional display of caller address.
|
---|
429 | (Remove NO_CALLER #define)
|
---|
430 | - PE2LX: o Process imports in Ring-3.
|
---|
431 | - KERNEL32: o Rewrote pe2lx classes to match pe2lx import changes.
|
---|
432 | o Made pe2lx classes use the generic export lookup.
|
---|
433 | o Rewrote the generic PE export lookup in the base class
|
---|
434 | to use a binary search and support pe2lx images with
|
---|
435 | differnet RVA calculation.
|
---|
436 | o Fixed a couple of COMMIT_ALL issues where pages were touched
|
---|
437 | by winimagepeldr code before they were preloaded.
|
---|
438 | - USER32: o Removed duplicate (and dangerous) checks on framewindows
|
---|
439 | in a couple of enumerations (OSLibWinQueryClientWindow).
|
---|
440 | - MAKE: o Warn about uninitialized variables for C++ code.
|
---|
441 | (Looks like it give a lot of false warnings on C code, so
|
---|
442 | let's skip it there.)
|
---|
443 |
|
---|
444 | 2004-01-14: KO Myung-Hun <komh@chollian >
|
---|
445 | - GDI32: o Fixed Ft2CharStringPosAtW(), passing lCount instead len.
|
---|
446 | o Modified Ft2GetTextExtentW(). Now use OSLibGpiQueryCharStringPosAt().
|
---|
447 | o Fixed InternalTextOutAW(). When using font association, the height of
|
---|
448 | DBCS and SBCS chars may be different. In this case, background
|
---|
449 | color make stair below chars.
|
---|
450 | o Fixed GetTextExtentPointA() and GetTextExtentExPointA() to support DBCS.
|
---|
451 |
|
---|
452 | 2003-01-11: Sander van Leeuwen <sandervl@innotek >
|
---|
453 | - GDI32, USER32, KERNEL32:
|
---|
454 | o Major updates.
|
---|
455 |
|
---|
456 | 2004-01-08: KO Myung-Hun <komh@chollian >
|
---|
457 | - GDI32: o Fixed FONT_mbtowc(). If charset is 0, CP must not be 1252 in DBCS country.
|
---|
458 | o Restored calcDimensions(). The result of the old is the same as that
|
---|
459 | of O32_GetTextExtent().
|
---|
460 |
|
---|
461 | 2003-12-29: KO Myung-Hun <komh@chollian >
|
---|
462 | - GDI32: o GetTextExtentPointW fix
|
---|
463 | o GetTextExtentExPointA fix for DBCS leadbytes
|
---|
464 |
|
---|
465 | 2003-12-29: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
466 | - GDI32: o GetTextExtentPointW fix
|
---|
467 |
|
---|
468 | 2003-12-12: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
469 | - KERNEL32: o Fix for memory map offset
|
---|
470 |
|
---|
471 | 2003-12-01: KO Myung-Hun <komh@chollian >
|
---|
472 | - GDI32: o Use Warpsans Combined in DBCS environments
|
---|
473 | - SHLWAPI: o Forward wvnsprintfA/W to user32
|
---|
474 | - USER32: o wvsnprintfA/W: fixed ascii and unicode conversion
|
---|
475 | o Listbox: added index and length conversion between ANSI and UNICODE
|
---|
476 |
|
---|
477 | 2003-12-01: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
478 | - SHELL32: o Fixed memory leak
|
---|
479 |
|
---|
480 | 2002-11-21: Dmitry Froloff <froloff@os2 >/Alex Samorukov (samm@os2.kiev )
|
---|
481 | - KERNEL32: o Support for Ukrainian language added
|
---|
482 | o Unicode table updates
|
---|
483 | - USER32: o Ukrainian resources added
|
---|
484 | - TOOLS\WRC:o Unicode table updates
|
---|
485 |
|
---|
486 | 2003-11-17: Sander van Leeuwen <sandervl@innotek >
|
---|
487 | - USER32: o Destroy switch entry before hiding window in DestroyWindow.
|
---|
488 | (workaround for XCenter problems)
|
---|
489 | - SHELL32: o Destroy icon cache imagelists in SIC_Destroy
|
---|
490 |
|
---|
491 | 2003-11-14: Sander van Leeuwen <sandervl@innotek >
|
---|
492 | - USER32: o Updates
|
---|
493 |
|
---|
494 | 2003-11-12: Sander van Leeuwen <sandervl@innotek >
|
---|
495 | - GDI32/USER32:
|
---|
496 | o Clip/visible region changes
|
---|
497 |
|
---|
498 | 2003-11-12: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
499 | - SHELL32: o Resource updates
|
---|
500 | o Shell file operations updates
|
---|
501 |
|
---|
502 | 2003-11-11: knut st. osmundsen <bird-changelog@innotek >
|
---|
503 | - MAKE: o Added a set of custombuild rules to the root makefile.
|
---|
504 |
|
---|
505 | 2003-10-30: Sander van Leeuwen <sandervl@innotek >
|
---|
506 | - SHELL32: o Wrong if statement in recent SHAddToRecentDocs patch
|
---|
507 |
|
---|
508 | 2003-10-24: Sander van Leeuwen <sandervl@innotek >
|
---|
509 | - SHLWAPI: o Removed wrong debug wrappers for forwarders
|
---|
510 | - WININET: o Fixed initterm
|
---|
511 | - VERSION: o Resync with Wine
|
---|
512 | - PEBUILD: o Added
|
---|
513 |
|
---|
514 | 2003-10-25: knut st. osmundsen <bird-changelog@anduin >
|
---|
515 | - MAKE: o pe_*.obj changes for custombuilds.
|
---|
516 | o Custombuild objects goes into .\bin\<buildmode>.cust so it's
|
---|
517 | possible to build both in the same tree.
|
---|
518 | o Don't build the src/custombuild directory as it's broken.
|
---|
519 |
|
---|
520 | 2003-10-22: Sander van Leeuwen <sandervl@innotek >
|
---|
521 | - USER32: o Use WC_FRAME for the Odin frame window and subclass it. There's
|
---|
522 | some PM code that makes assumptions about frame window names.
|
---|
523 | o Updates for new keyboard hook
|
---|
524 | - PMKBDHK: o Updates
|
---|
525 |
|
---|
526 | 2003-10-20: Sander van Leeuwen <sandervl@innotek >
|
---|
527 | - USER32: o PM windows should have no owner if none is specified. (instead
|
---|
528 | of their parent)
|
---|
529 | (NOTE: Potentially dangerous change!)
|
---|
530 |
|
---|
531 | 2003-10-20: Platon Fomichev <stauff@innotek >
|
---|
532 | - USER32: o On init we should migrate fonts that Windows applications
|
---|
533 | installed globally.
|
---|
534 |
|
---|
535 | 2003-10-16: Sander van Leeuwen <sandervl@innotek >
|
---|
536 | - SHELL32: o CommandLineToArgvW bugfix from Wine
|
---|
537 | - ADVAPI32: o Check for valid SID pointer in LengthSid
|
---|
538 |
|
---|
539 | 2003-10-13: Platon Fomichev <stauff@innotek >
|
---|
540 | - COMDLG32: o We should set/clear PD_PRINTTOFILE flag when we click on
|
---|
541 | checkbox to change dialog print structure.
|
---|
542 |
|
---|
543 | 2003-10-13: Sander van Leeuwen <sandervl@innotek >
|
---|
544 | - WINMM: o Make sure the timer object is not deleted inside the timer
|
---|
545 | callback handler
|
---|
546 |
|
---|
547 | 2003-10-06: Platon Fomichev <stauff@innotek >
|
---|
548 | - USER32: o Wrong class names (case) for Static, Scroller, Button.
|
---|
549 | - OLEAUT32: o GIF and JPEG static libs for IPicture interface implementation
|
---|
550 |
|
---|
551 | 2003-10-06: KO Myung-Hun <komh@chollian >
|
---|
552 | - USER32: o Fixed heap corruption when changing windows text (DBCS)
|
---|
553 |
|
---|
554 | 2003-10-01: Sander van Leeuwen <sandervl@innotek >
|
---|
555 | - USER32: o Clean up global critical section (window handles) during unload
|
---|
556 | - SHELL32: o Added stubs for SHGetNewLinkInfoA/W
|
---|
557 |
|
---|
558 | 2003-10-01: Platon Fomichev <stauff@innotek >
|
---|
559 | - USER32: o CallWindowProcA/W: don't fail if window handle is invalid
|
---|
560 | - SHELL32: o Add support for Unicode adding of files to 'recent document'
|
---|
561 | - COMCTL32: o Fixed bug when calling function by pointer in MRU funcs
|
---|
562 |
|
---|
563 | 2003-09-30: knut st. osmundsen <bird-odinspam@anduin >
|
---|
564 | - CMDQD: o Fixed code which messes with STD handles.
|
---|
565 |
|
---|
566 | 2003-09-18: KO Myung-Hun <komh@chollian >
|
---|
567 | - KERNEL32: o fixed GetAtomNameW() and GlobalGetAtomNameW() to support
|
---|
568 | unicode correctly. (DBCS)
|
---|
569 |
|
---|
570 | 2003-09-14: knut st. osmundsen <bird-odinspam@anduin >
|
---|
571 | - MAKE: o Synced with other projects using the new buildsystem (which
|
---|
572 | odin doesn really use yet).
|
---|
573 | - TOOLS/BIN:o Updated BuildEnv.cmd. Will now facilitate a global config
|
---|
574 | file in the ETC directory if not a local one is found.
|
---|
575 |
|
---|
576 | 2003-09-07: knut st. osmundsen <bird-odinspam@anduin >
|
---|
577 | - LIBWRAP: o Do all .asm's in with on ALP.
|
---|
578 |
|
---|
579 | 2003-08-22: Sander van Leeuwen <sandervl@innotek >
|
---|
580 | - USER32: o Ignore messages sent or posted to the desktop window
|
---|
581 | o Post/SendMessage: use shared or local memory depending
|
---|
582 | on the target window.
|
---|
583 |
|
---|
584 | 2003-08-20: Sander van Leeuwen <sandervl@innotek >
|
---|
585 | - USER32: o Do not create CD polling window by default. It can cause
|
---|
586 | PM hangs. (IOCtl blocks indefinitely)
|
---|
587 |
|
---|
588 | 2003-08-09: Sander van Leeuwen <sandervl@innotek >
|
---|
589 | - IPLOG: o Limit logfile size to 250 MB. When reached, reset file position
|
---|
590 | to start of file.
|
---|
591 |
|
---|
592 | 2003-08-08: Sander van Leeuwen <sandervl@innotek >
|
---|
593 | - TOOLS\CVTASM:
|
---|
594 | o Header parser and assembly wrapper generator
|
---|
595 | - LIBWRAP: o Assembly wrappers for WGSS and OS/2 functions
|
---|
596 | - USER32: o Update for libwrap
|
---|
597 |
|
---|
598 | 2003-08-07: KO Myung-Hun <komh@chollian >
|
---|
599 | - USER32: o Generate WM_IME_CHAR messages for DBCS input
|
---|
600 | o Process WM_IME_CHAR in Edit, Listbox, Combo controls and
|
---|
601 | default window procedures
|
---|
602 |
|
---|
603 | 2003-08-06: Sander van Leeuwen <sandervl@innotek >
|
---|
604 | - USER32: o Cleaned up GetMessage/PeekMessage.
|
---|
605 | o Removed DispatchMessage change for WM_CHAR; must return
|
---|
606 | the proper format in Get/PeekMessageA/W.
|
---|
607 | (assuming the GetMessageW/DispatchMessageA combination is
|
---|
608 | not allowed)
|
---|
609 |
|
---|
610 | 2002-08-06: Dmitry Froloff <froloff@os2 >
|
---|
611 | - KERNEL32: o HMDeviceConsoleOutClass::CreateFile; use current window size
|
---|
612 | instead of default
|
---|
613 |
|
---|
614 | 2003-08-01: Sander van Leeuwen <sandervl@innotek >
|
---|
615 | - USER32: o Fixed SPI_GETWHEELSCROLLLINES
|
---|
616 | - AVICAP32: o Added stub dll from Wine
|
---|
617 | - KERNEL32: o Added InitializeCriticalSectionAndSpinCount from Rewind
|
---|
618 |
|
---|
619 | 2003-07-31: KO Myung-Hun <komh@chollian >
|
---|
620 | - USER32: o fixed GetMenuStringA() to truncate DBCS string correctly.
|
---|
621 | o fixed GetMenuItemInfo_common() to truncate DBCS string correctly.
|
---|
622 | o fixed WM_GETTEXT of Win32BaseWindow::DefWindowProcA() and
|
---|
623 | Win32BaseWindow::DefWindowProcW() to ensure null-terminator.
|
---|
624 | o fixed Win32BaseWindow::GetWindowTextA() and Win32BaseWindow::GetWindowTextW()
|
---|
625 | to ensure null-terminator.
|
---|
626 | o fixed memory allocation for windowNameW. When open 'Open common dialog box'
|
---|
627 | memory block of windowNameW is overwritten.
|
---|
628 | o fixed MessageBoxIndirectW() to support unicode correctly.
|
---|
629 | o fixed OSLibWinDispatchMsg() to distinguish ascii message from
|
---|
630 | unicode message in case of the message being sent directly
|
---|
631 | o fixed OS2ToWinMsgTranslate() to process DBCS input.
|
---|
632 | o fixed Win32BaseWindow::MsgChar() to distinguish ascii from unicode message.
|
---|
633 | o fixed Win32BaseWindow::MsgCreate(), Win32BaseWindow::DefWindowProcA(),
|
---|
634 | Win32BaseWindow::DefWindowProcW() to process messages related to
|
---|
635 | window name such as WM_GETTEXT, WM_GETTEXTLENGTH, WM_SETTEXT, and so on.
|
---|
636 | o fixed Win32BaseWindow::GetWindowTxtLength(), Win32BaseWindow::GetWindowTextA(),
|
---|
637 | and Win32BaseWindow::GetWindowTextW() to process window name correctly.
|
---|
638 | o fixed DispatchMessageW() to call CallWindowProcW() not CallWindowProcA().
|
---|
639 | o fixed WINPROC_UnmapMsg32ATo32W(). len is first word of ptr not lParam on EM_GETLINE.
|
---|
640 | o changed a parameter WPARAC wParam to WPARAC *wParam of WINPROC_MapMsg32WTo32A() and
|
---|
641 | WINPROC_UnmapMsg32WTo32A() to process WM_GETTEXT.
|
---|
642 | o fixed WINPROC_MapMsg32WTo32A(). When EM_GETLINE mapped, first word of lParam
|
---|
643 | is ascii length not unicode length.
|
---|
644 | o improved WINPROC_CallProc32ATo32W() and WINPROC_CallProc32WTo32A() to process WM_CHAR
|
---|
645 | and WM_GETTEXTLENGTH, LB-GETTEXTLEN, CB_GETLBTEXTLEN.
|
---|
646 | o fixed edit control to process WM_CHAR including splitted DBCS chars.
|
---|
647 | o fixed listbox control to process WM_CHAR including splitted DBCS chars.
|
---|
648 |
|
---|
649 | 2002-07-31: Dmitry Froloff <froloff@os2 >
|
---|
650 | - USER32: o Convert WM_CHAR characters to UTF-16 for unicode windows
|
---|
651 |
|
---|
652 | 2003-07-28: Platon Fomichev <stauff@innotek >
|
---|
653 | - WMC: o Port of Wine Windows Message Compiler
|
---|
654 | - KERNEL32: o Fixed loading of unicode messages and added loading of
|
---|
655 | internal ones. (message file from Rewind)
|
---|
656 |
|
---|
657 | 2003-07-28: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
658 | - USER32: o Updates
|
---|
659 | - OLEPRO32: o Updates
|
---|
660 | - ODINCRT: o Use fast method to query pid & tid in critical sections
|
---|
661 |
|
---|
662 | 2003-07-28: Sander van Leeuwen <sandervl@innotek >
|
---|
663 | - USER32: o Updates
|
---|
664 | - WINMM: o Updates
|
---|
665 | - OLE32: o Updates
|
---|
666 | - SHELL32: o Return 'My Computer' when an applications asks for the
|
---|
667 | 'Network Places' shell32 object
|
---|
668 | o Filter out hidden files in CreateFolderEnumList if not wanted (Wine update)
|
---|
669 | o Also check for SFGAO_HASSUBFOLDER flag when deciding whether or
|
---|
670 | not to clear SFGAO_FOLDER & SFGAO_HASSUBFOLDER!
|
---|
671 | (---> submit to Wine)
|
---|
672 |
|
---|
673 | 2003-07-16: KO Myung-Hun <komh@chollian >
|
---|
674 | - SHELL32: o DragQueryFileW; allocate more for unicode conversion (DBCS)
|
---|
675 | - WINMM: o Fixed mciGetErrorStringW() to prevent buffer overflow.
|
---|
676 | o Fixed midiInGetErrorText() and midiOutGetErrorText()
|
---|
677 | to prevent buffer overflow.
|
---|
678 | o Fixed waveInGetErrorTextW() to prevent buffer overflow.
|
---|
679 | o Fixed waveOutGetErrorTextW() to prevent buffer overflow.
|
---|
680 | - GDI32: o Fixed GetTextFaceW() to support unicode correctly. (DBCS)
|
---|
681 | o Fixed calcDimensions(). The width is one point - other point + 1
|
---|
682 | (code currently not active)
|
---|
683 | - KERNEL32: o Added functions to query length after ascii or unicode conversion
|
---|
684 | o Changed the destination length parameter name of lstrcpynWtoA()
|
---|
685 | and lstrcpynAtoW().
|
---|
686 |
|
---|
687 | 2002-07-16: Yuri Dario <mc6530@mclink >
|
---|
688 | - INSTALL: o Do not overwrite program files registry entry if it already
|
---|
689 | exists and is valid.
|
---|
690 |
|
---|
691 | 2003-07-16: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
692 | - GDI32: o Fix for partial blits in StretchDIBits
|
---|
693 |
|
---|
694 | 2003-07-14: KO Myung-Hun <komh@chollian >
|
---|
695 | - GDI32: o Fixed InternalTextOutW() and GetTextExtentPointW() to support
|
---|
696 | unicode correctly. (DBCS)
|
---|
697 | - COMCTL32: o Fixed PROPSHEET_CollectSheetInfoA() and PROPSHEET_SetTitleA()
|
---|
698 | to convert ascii to unicode correctly. (DBCS)
|
---|
699 | o Fixed TREEVIEW_TVItemFromItem() and TREEVIEW_BeginLabelEditNotify()
|
---|
700 | to convert ascii to unicode correctly. (DBCS)
|
---|
701 | o Fixed TREEVIEW_SetItemW() to convert unicode to ascii correctly. (DBCS)
|
---|
702 |
|
---|
703 | 2003-07-11: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
704 | - SHELL32: o Shell folder updates
|
---|
705 |
|
---|
706 | 2003-07-09: knut st. osmundsen <bird-odinspam@anduin >
|
---|
707 | - MAKEFILES:o Invoke RC directly and not thru the CMDQD.
|
---|
708 |
|
---|
709 | 2002-07-07: Dmitry Froloff <froloff@os2 >
|
---|
710 | - PMKDBHK: o Pass Alt-Shift on to PM (Russian language switch hotkey)
|
---|
711 |
|
---|
712 | 2003-07-03: Sander van Leeuwen <sandervl@innotek >
|
---|
713 | - USER32: o Free drag transfer structure after sending DM_RENDERCOMPLETE
|
---|
714 | o MapVirtualKey: when mapping VK_A-VK_Z, VK_0-VK_9 to their
|
---|
715 | scancodes, use hardcoded character mapping for convertion.
|
---|
716 |
|
---|
717 | 2003-06-26: Platon Fomichev <stauff@innotek >
|
---|
718 | - USER32: o ShowWindow(SW_RESTORE) should start the same PM restoration
|
---|
719 | routine as WM_SYSCOMMAND
|
---|
720 |
|
---|
721 | 2003-06-03: Sander van Leeuwen <sandervl@innotek >
|
---|
722 | - USER32: o Don't search for keyboard accelerators in the default
|
---|
723 | WM_SYSKEYDOWN handler. That's already done in TranslateAccelerator
|
---|
724 | o Send focus messages when we receive the undocumented WM_FOCUSCHANGED
|
---|
725 | PM message. Removes the need for the ugly hack to deal with
|
---|
726 | nested focus changes.
|
---|
727 | - COMCTL32: o Rebar fix for recursive size changes
|
---|
728 |
|
---|
729 | 2003-06-02: Sander van Leeuwen <sandervl@innotek >
|
---|
730 | - KERNEL32: o CreatePipe: create unique named pipe
|
---|
731 | o CreateNamedPipe: fixed return value + wrong check for duplex pipe
|
---|
732 |
|
---|
733 | 2003-05-29: Platon Fomichev <stauff@innotek >
|
---|
734 | - COMCTL32: o Listview selection draw code was not ok with OS/2 look
|
---|
735 |
|
---|
736 | 2003-05-28: Platon Fomichev <stauff@innotek >
|
---|
737 | - COMCTL32: o OWNERDRAW fixes for ListView control
|
---|
738 |
|
---|
739 | 2003-05-27: Sander van Leeuwen <sandervl@innotek >
|
---|
740 | - USER32: o Do not send WM_STYLECHANGING/ED messages when the scrollbar
|
---|
741 | control is shown or hidden.
|
---|
742 | o PeekMessage fix (regression from 5-16)
|
---|
743 |
|
---|
744 | 2003-05-26: Sander van Leeuwen <sandervl@innotek >
|
---|
745 | - COMCTL32: o Use the new resources from Wine.
|
---|
746 |
|
---|
747 | 2003-05-26: Platon Fomichev <stauff@innotek >
|
---|
748 | - COMCTL32: o Listview selection draw code was incomplete due to resync.
|
---|
749 |
|
---|
750 | 2003-05-26: Platon Fomichev <stauff@innotek >
|
---|
751 | - COMCTL32: o Patrick's 2001 fixes broke too much. Stay with ReWind for now.
|
---|
752 |
|
---|
753 | 2003-05-23: Sander van Leeuwen <sandervl@innotek >
|
---|
754 | - KERNEL32: o ClearCommError: lpdwError is allowed to be NULL
|
---|
755 |
|
---|
756 | 2003-05-16: Sander van Leeuwen <sandervl@innotek >
|
---|
757 | - USER32: o Use our fast critical sections instead of OS/2 mutex semaphores
|
---|
758 | in the timer code.
|
---|
759 | o Handle WM_(SYS)TIMER timer calls in DispatchMessageA/W.
|
---|
760 | We previously called timer handlers when we received WM_TIMER
|
---|
761 | from PM. That's not correct. These messages must be returned
|
---|
762 | by Get/PeekMessage. The handler will not be called if the
|
---|
763 | timer message is not dispatched. (verified in NT4)
|
---|
764 |
|
---|
765 | 2003-05-16: Platon Fomichev <stauff@innotek >
|
---|
766 | - USER32: o Eat first WM_MOUSEMOVE while menu tracking like windows does
|
---|
767 | to prevent 'auto-clicking' on popup menus that appear in the
|
---|
768 | area of first mouse-click
|
---|
769 |
|
---|
770 | 2003-05-15: Sander van Leeuwen <sandervl@innotek >
|
---|
771 | - USER32: o Window creation: updated the coordinate fix code with the latest Rewind version
|
---|
772 | o ReleaseDC: always verify window associated with DC
|
---|
773 | - COMCTL32: o Complete resync with latest Wine (except draglist)
|
---|
774 | o Implemented LVM_APPROXIMATEVIEWRECT for LVS_REPORT controls
|
---|
775 | (needed to get rid of a crash; very likely to be incorrect)
|
---|
776 |
|
---|
777 | 2003-05-14: Sander van Leeuwen <sandervl@innotek >
|
---|
778 | - GDI32: o DIB section: do not fetch more colors from a bitmap header than
|
---|
779 | biClrUsed (if != 0)
|
---|
780 | o GetDIBits: save and restore negative height & log failure
|
---|
781 | - USER32: o Do not send any SetWindowPos related messages if the state
|
---|
782 | of the window doesn't change.
|
---|
783 |
|
---|
784 | 2003-05-12: Sander van Leeuwen <sandervl@innotek >
|
---|
785 | - KERNEL32: o _lopen: wrong parsing of mode parameter
|
---|
786 | (only found now due to CreateFile changed with dwDesiredAccess)
|
---|
787 |
|
---|
788 | 2003-05-07: Sander van Leeuwen <sandervl@innotek >
|
---|
789 | - USER32: o Added more members to the TEB structure
|
---|
790 |
|
---|
791 | 2003-05-06: Sander van Leeuwen <sandervl@innotek >
|
---|
792 | - KERNEL32: o Fixed closing of parent file handle by duplicate memory map
|
---|
793 | o Compare file names instead of handles when checking for
|
---|
794 | duplicate file maps.
|
---|
795 | - USER32: o ReleaseDC check if hwnd parameter is correct (WindowFromDC(hdc))
|
---|
796 | o Messagebox: Wrong ReleaseDC call
|
---|
797 |
|
---|
798 | 2003-05-06: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
799 | - KERNEL32: o Corrected the handling of OF_PARSE in OpenFile.
|
---|
800 |
|
---|
801 | 2003-05-05: Sander van Leeuwen <sandervl@innotek >
|
---|
802 | - KERNEL32: o Handle files opened with 0 for dwDesiredAccess seperately.
|
---|
803 | Those handles can only be used with a limited nr of functions
|
---|
804 | (such as GetFileType/Size/Time)
|
---|
805 | - IPHLPAPI: o Implemented GetIpAddrTable, GetIfTable & GetFriendlyIfIndex
|
---|
806 |
|
---|
807 | 2003-05-02: Sander van Leeuwen <sandervl@innotek >
|
---|
808 | - USER32: o Keep track of all open window DCs
|
---|
809 | o During WM_VRNENABLED we must query the visible region
|
---|
810 | of all open DCs to ensure that GPI updates the visible
|
---|
811 | region (e.g. when a window has moved).
|
---|
812 | A bug in PM/GPI causes open DCs to get out of sync when
|
---|
813 | moving windows with full window drag enabled.
|
---|
814 | (without full window drag there is no such problem due
|
---|
815 | to the use of LockWindowUpdate)
|
---|
816 |
|
---|
817 | 2003-04-30: Platon Fomichev <stauff@innotek >
|
---|
818 | - USER32: o In WM_PARENTNOTIFY correctly map window coordinates for each
|
---|
819 | window we send this message to.
|
---|
820 | Correctly finish PM minimize sequence.
|
---|
821 | Correctly switch titlebar higlight on activate/deactivate.
|
---|
822 |
|
---|
823 | 2003-04-30: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
824 | - SHLWAPI: o Fixed PathIsUrlA/W
|
---|
825 | - KERNEL32: o Changed dll renaming to include extension if it's not .dll
|
---|
826 | - ODIN.INI: o Update for kernel32 change
|
---|
827 | (IMPORTANT: must update your odin.ini with this one or
|
---|
828 | delete the current file)
|
---|
829 |
|
---|
830 | 2003-04-27: Platon Fomichev <stauff@innotek >
|
---|
831 | - USER32: o Correctly finish PM restore procedure from minimized state.
|
---|
832 | o Use Stock brush for minimized icon fill when it is not
|
---|
833 | allocated.
|
---|
834 |
|
---|
835 | 2003-04-25: Sander van Leeuwen <sandervl@innotek >
|
---|
836 | - NTDLL: o Initialize kernel32 first (circular dependency between
|
---|
837 | kernel32 & ntdll)
|
---|
838 |
|
---|
839 | 2003-04-25: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
840 | - USER32: o Fake window subclass FS bugfix.
|
---|
841 |
|
---|
842 | 2003-04-24: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
843 | - USER32: o Fake window init bugfixes
|
---|
844 |
|
---|
845 | 2003-04-24: Sander van Leeuwen <sandervl@innotek >
|
---|
846 | - USER32: o EndDialog: Enable owner window regardless of whether it was
|
---|
847 | enabled before dialog creation. When the owner
|
---|
848 | is disabled and we hide the dialog, then PM switches
|
---|
849 | focus to another application. (hidden windows cannot
|
---|
850 | have focus)
|
---|
851 | o Win32BaseWindow::GetWindowFromOS2Handle: also check fake
|
---|
852 | windows)
|
---|
853 |
|
---|
854 | 2003-04-24: Platon Fomichev <stauff@innotek >
|
---|
855 | - USER32: o Fixed restore/maximize from minimized state for MDI windows.
|
---|
856 |
|
---|
857 | 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
858 | - USER32: o Properties allocated from shared memory.
|
---|
859 | o Fake window updates.
|
---|
860 |
|
---|
861 | 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
862 | - src/makefile:
|
---|
863 | o Build NTDLL too. (netlabs only)
|
---|
864 |
|
---|
865 | 2003-04-14: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
866 | - USER32: o Implemented SW_SHOWDEFAULT.
|
---|
867 | - KERNEL32: o Changed initialization of StartupInfo to take the actual
|
---|
868 | values of the CreateProcess call (but for the strings).
|
---|
869 | (not complete)
|
---|
870 |
|
---|
871 | 2003-04-11: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
872 | - USER32, KERNEL32, include/win/thread.h:
|
---|
873 | o Implemented WM_COPYDATA.
|
---|
874 |
|
---|
875 | 2002-04-11: Sander van Leeuwen <sandervl@innotek >
|
---|
876 | - USER32: o Send WM_WINDOWPOSCHANGED for ShowWindow(SW_SHOWWINDOW)
|
---|
877 | o Tool windows (WS_EX_TOOLWINDOW) don't have minimize or maximize
|
---|
878 | buttons. (testing shows this in NT4)
|
---|
879 | o Changed default hittest handler to check for WS_EX_TOOLWINDOW
|
---|
880 | (system menu & min/max buttons)
|
---|
881 | o MENU_TrackKbdMenuBar: check for WS_EX_TOOLWINDOW before using
|
---|
882 | the system menu.
|
---|
883 | o Display tool window titlebars in win32 style. They are supposed
|
---|
884 | to be thinner than standard PM titlebar controls.
|
---|
885 |
|
---|
886 | 2003-04-11: Dmitry Froloff <froloff@os2 >
|
---|
887 | - KERNEL32: o Console updates
|
---|
888 |
|
---|
889 | 2003-04-10: Platon Fomichev <stauff@innotek >
|
---|
890 | - MSVCRT : o MSVCRT updates, forwarders to stdcall functions, lots of funcs
|
---|
891 | now directly imported from NTDLL, resync with latest Wine
|
---|
892 | - EMXLIBS : o Added yet another wrapper for FS and added some funcs for new
|
---|
893 | msvcrt
|
---|
894 | - INCLUDE : o OS2SEL functions corrected for potential optimizing problems
|
---|
895 | in release build. (Bug found and corrected by Dietrich)
|
---|
896 |
|
---|
897 | 2002-04-09: Sander van Leeuwen <sandervl@innotek >
|
---|
898 | - KERNEL32: o Unmap memory view when deleting PE dll object.
|
---|
899 | (problem found by Dietrich)
|
---|
900 |
|
---|
901 | 2003-04-09: Platon Fomichev <stauff@innotek >
|
---|
902 | - COMCTL32: o Due to flaw in cdecl implementation of GCC temporary
|
---|
903 | correctly import _wtoi func from NTDLL
|
---|
904 | - EMXLIBS: o Possible endless loop in OS2FS replacement funcs
|
---|
905 | (problem found by Dietrich)
|
---|
906 |
|
---|
907 | 2003-04-08: Platon Fomichev <platon@innotek >
|
---|
908 | - USER32: o Treat LBUTTON press different from others in scrollbar. (WineX resync)
|
---|
909 |
|
---|
910 | 2002-04-08: knut st. osmundsen <Knut.Osmundsen@innotek >
|
---|
911 | - COMDLG32: o Corrected default printer init. It was crashing with big
|
---|
912 | printer setups and not handling multiple drivers per device
|
---|
913 | correctly.
|
---|
914 |
|
---|
915 | 2002-04-08: Sander van Leeuwen <sandervl@innotek >
|
---|
916 | - USER32: o Menu control: do not paint default menu item strings in bold
|
---|
917 | if in OS/2 GUI mode
|
---|
918 |
|
---|
919 | 2003-04-04: Platon Fomichev <platon@innotek >
|
---|
920 | - NTDLL: o Massive update. NTDLL internal tests, almost all
|
---|
921 | string and conversion funcs. Corrected and beautified .def file
|
---|
922 | - DOC: o Updated GCCBuildInstructions.txt for GCC 3.2.1
|
---|
923 |
|
---|
924 | 2003-04-03: Sander van Leeuwen <sandervl@innotek >
|
---|
925 | - WINMM: o Different method for detecting DirectAudio (uniaud, sblive, c-media)
|
---|
926 | o Added custom build function to disable DirectAudio (always use DART)
|
---|
927 | o Waveout (DART): handle underrun properly (next buffer write
|
---|
928 | and position after continueing)
|
---|
929 |
|
---|
930 | 2002-04-02: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
931 | - WIN32K: o Win32VersionValue in OptionalHeader.
|
---|
932 |
|
---|
933 | 2002-04-02: Yuri Dario <mc6530@mclink >
|
---|
934 | - INCLUDE, GDI32, USER32, KERNEL32:
|
---|
935 | o Corrected & changed headers + source updates
|
---|
936 | - USER32: o Button: WM_SETTEXT fix
|
---|
937 |
|
---|
938 | 2003-04-02: Platon Fomichev <platon@innotek >
|
---|
939 | - INCLUDE, KERNEL32:
|
---|
940 | o Corrected HFILE definition as it is in Wine and in Win2k +
|
---|
941 | header updates.
|
---|
942 | - INCLUDE\EMXRUNTIME:
|
---|
943 | o Modified EMX headers
|
---|
944 | - LIB\EMXSUPPORT:
|
---|
945 | o Modified EMX libraries
|
---|
946 |
|
---|
947 | 2003-04-01: Sander van Leeuwen <sandervl@innotek >
|
---|
948 | - GDI32: o Fix for partial dibsection resyncs
|
---|
949 |
|
---|
950 | 2003-04-01: Platon Fomichev <stauff@innotek >
|
---|
951 | - USER32: o Functions for setting custom frame/cd/window class names
|
---|
952 |
|
---|
953 | 2003-03-31: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
954 | - SHELL32: o Shell file operations update
|
---|
955 |
|
---|
956 | 2003-03-31: Platon Fomichev <platon@innotek >
|
---|
957 | - KERNEL32: o Added vsnprintfW/snprintfW funcs for syncing with latest
|
---|
958 | wine NTDLL
|
---|
959 |
|
---|
960 | 2003-03-31: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
961 | - PE2LX/WIN32K:
|
---|
962 | o Custombuild feature for excluding dlls. Cleanups.
|
---|
963 | o Option for making all object RW file.
|
---|
964 | - KERNEL32: o Made Pe2Lx'ed DLLs work.
|
---|
965 |
|
---|
966 | 2003-03-28: Sander van Leeuwen <sandervl@innotek >
|
---|
967 | - USER32: o Removed changes for window tracking (move/size) with full
|
---|
968 | window dragging enabled (2003-03-27)
|
---|
969 |
|
---|
970 | 2003-03-27: Sander van Leeuwen <sandervl@innotek >
|
---|
971 | - USER32: o Don't change focus when processing mouse button message if
|
---|
972 | the top parent is a fake window
|
---|
973 | o Changes for window tracking (move/size) with full window
|
---|
974 | dragging enabled
|
---|
975 | - KERNEL32: o Memory map updates
|
---|
976 |
|
---|
977 | 2003-03-26: Sander van Leeuwen <sandervl@innotek >
|
---|
978 | - KERNEL32: o WaitForSingleObject/(Msg)WaitForMultipleObject fixes to
|
---|
979 | prevent thread priorities from being accidentally boosted to
|
---|
980 | time critical
|
---|
981 |
|
---|
982 | 2003-03-22: Sander van Leeuwen <sandervl@innotek >
|
---|
983 | - USER32: o If an application doesn't validate the update region
|
---|
984 | while processing WM_PAINT, then we must remember it for
|
---|
985 | the next time.
|
---|
986 | Windows will only send a WM_PAINT once until another part of
|
---|
987 | the window is invalidated. Unfortunately PM keeps on sending
|
---|
988 | WM_PAINT messages until we validate the update region.
|
---|
989 | This affects UpdateWindow, RedrawWindow, GetUpdateRgn, GetUpdateRect,
|
---|
990 | BeginPaint and the next WM_PAINT message.
|
---|
991 |
|
---|
992 | 2003-03-20: Sander van Leeuwen <sandervl@innotek >
|
---|
993 | - USER32: o WindowFromPoint: only send WM_NCHITTEST to windows belonging
|
---|
994 | to the current thread
|
---|
995 | o Changes for fake windows. Moved them into a seperate C++ class
|
---|
996 | and overload some methods to correct the behaviour.
|
---|
997 |
|
---|
998 | 2003-03-18: Platon Fomichev <platon@innotek >
|
---|
999 | - USER32: o Shift/Ctrl/Alt+Numpad keys illegal behaviour. Generic numpad
|
---|
1000 | keys like (/*-+) produced garbage.
|
---|
1001 |
|
---|
1002 | 2003-03-12: Platon Fomichev <stauff@innotek >
|
---|
1003 | - USER32: o GetKeyState and GetAsyncKeyState fixes for numpad keyboard
|
---|
1004 |
|
---|
1005 | 2003-03-06: Sander van Leeuwen <sandervl@innotek >
|
---|
1006 | - KERNEL32: o Don't change the stack alignment if the thread has less than
|
---|
1007 | 128 kb stack.
|
---|
1008 | - WINMM: o Improved accuracy of waveIn/OutGetPosition. (use FPU to prevent
|
---|
1009 | rounding errors)
|
---|
1010 | o Added code to dump played wave data to disk (disabled by default)
|
---|
1011 |
|
---|
1012 | 2003-03-06: knut st. osmundsen <Knut.Osmundsen@innotek >
|
---|
1013 | - KERNEL32: o The WIN32LOG_FILEBASE env.var. can be used to point the logfile
|
---|
1014 | elsewhere. "%d.log" is added to the value.
|
---|
1015 | o Print szLineExceptionType too in exception dump.
|
---|
1016 | o Custombuild apis for entering and leaving Odin thread context.
|
---|
1017 | o Added functions to quickly get the PID & TID
|
---|
1018 |
|
---|
1019 | 2003-03-05: knut st. osmundsen <bird-odin-spam@anduin >
|
---|
1020 | - MAKE: o Experimental OTHERS variable.
|
---|
1021 | o Full source path to compilers.
|
---|
1022 |
|
---|
1023 | 2003-03-05: Sander van Leeuwen <sandervl@innotek >
|
---|
1024 | - WINMM: o timeBegin/EndPeriod: check for upper and lower boundaries
|
---|
1025 | o waveoutGetPosition: return 0 if stream is not active (DART)
|
---|
1026 | o waveinGetPosition: return 0 if stream is not active (DART)
|
---|
1027 | o Don't print a warning for CALLBACK_NULL callbacks
|
---|
1028 | o Added ODIN_waveInSetFixedBuffers, renamed SetFixedWaveBufferSize
|
---|
1029 | to ODIN_waveOutSetFixedBuffers. Used to tell WINMM to use
|
---|
1030 | the waveOutWrite buffer size for the DART buffers.
|
---|
1031 | o Don't pause the wave stream if no buffers left to add. Let
|
---|
1032 | DART detect the underrun condition.
|
---|
1033 |
|
---|
1034 | 2003-03-04: Platon Fomichev <stauff@innotek >
|
---|
1035 | - USER32: o We did not pay attention to numlock state on numpad keyboard.
|
---|
1036 |
|
---|
1037 | 2003-03-03: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
1038 | - GDI32: o ExtTextOutA: copy string and force zero termination
|
---|
1039 | - SHELL32: o Minor updates
|
---|
1040 |
|
---|
1041 | 2003-03-03: Sander van Leeuwen <sandervl@innotek >
|
---|
1042 | - WSOCK32: o Removed wrong checks for invalid address parameters in
|
---|
1043 | sendto & recvfrom
|
---|
1044 |
|
---|
1045 | 2003-03-01: Sander van Leeuwen <sandervl@innotek >
|
---|
1046 | - KERNEL32: o ExitProcess: turn off hard errors & exception popups before
|
---|
1047 | calling O32_ExitProcess (release build only)
|
---|
1048 | o DeleteFile: when deleting a .lnk file, verify if it's a shell
|
---|
1049 | link object file. if so, delete WPS object
|
---|
1050 | o ODIN_DisableFolderShellLink added: disable object creation in
|
---|
1051 | Odin folder. Desktop shortcuts will still be created as WPS
|
---|
1052 | objects on the desktop.
|
---|
1053 | o OSLibWinCreateObject: create shelllink file with WPS object id
|
---|
1054 | - USER32/KERNEL32:
|
---|
1055 | o Move OSLibWinCreateObject to KERNEL32
|
---|
1056 | - SHELL32: o Shelllink: use kernel32 file functions instead of those from
|
---|
1057 | the VAC crt
|
---|
1058 |
|
---|
1059 | 2003-02-28: Sander van Leeuwen <sandervl@innotek >
|
---|
1060 | - SRC\makefile:
|
---|
1061 | o Skip msvcrt & crtdll for now. Causes too many problems with
|
---|
1062 | Odin builds.
|
---|
1063 | - KERNEL32: o Fixed CreateProcessA regression (Lotus Notes)
|
---|
1064 | o Check for invalid data while measuring the CPU speed. DosTmrQueryTime
|
---|
1065 | isn't very reliable (on laptops).
|
---|
1066 | o ExitProcess: don't remove our exception handler too early
|
---|
1067 | o Map ERROR_PATH_NOT_FOUND (OS/2) to ERROR_INVALID_NAME
|
---|
1068 | - WINMM: o Protect linked timer list with VMutex object.
|
---|
1069 |
|
---|
1070 | 2003-02-28: knut st. osmundsen <Knut.Osmundsen@innotek >
|
---|
1071 | - MAKEFILES:
|
---|
1072 | o New rule cleanall which tries to wipe out all the output.
|
---|
1073 | o ODIN32_LIB and ODIN32_BIN is now the same for all the CCENVs.
|
---|
1074 | (AFAIK we no longer try compile stuff with many compiles, but
|
---|
1075 | stick too the once which are working, VAC3 or EMX that is.)
|
---|
1076 | o Linenumbers in release mode.
|
---|
1077 | o Pass full source file names to compilers so the debugger easier
|
---|
1078 | will find the the right source.
|
---|
1079 | o Defined STATIC_CRT in src/win32k/utils.
|
---|
1080 | o Profiling: Link with kProfile.lib when DEBUG= and PROFILE=1.
|
---|
1081 | Configured this for EMX targets too. (state: Experimental)
|
---|
1082 |
|
---|
1083 | 2003-02-28: Platon Fomichev <stauff@innotek >
|
---|
1084 | - USER32: o Wrong checks on restoration point remembering. Maximizing
|
---|
1085 | window from PM icon using keyboard or menu produced wrong
|
---|
1086 | controls.
|
---|
1087 |
|
---|
1088 | 2003-02-27: Sander van Leeuwen <sandervl@innotek >
|
---|
1089 | - KERNEL32: o VirtualAlloc: fixed handling of commit for a page range
|
---|
1090 | that is not entirely reserved (contains committed pages)
|
---|
1091 | o Don't call WinMessageBox in the unhandled exception filter as
|
---|
1092 | that can hang PM.
|
---|
1093 |
|
---|
1094 | 2003-02-27: Platon Fomichev <stauff@innotek >
|
---|
1095 | - USER32: o Illegal PM sequence of maximizing from icon state corrected.
|
---|
1096 | Inter-thread controls change caused PM lockups. Rewrote
|
---|
1097 | PM window frame controls manipulation procedure.
|
---|
1098 |
|
---|
1099 | 2000-02-27: Achim Hasenmueller <achimha@innotek >
|
---|
1100 | - KERNEL32: o MoveFile: detect if source and target file names are on a
|
---|
1101 | different drive and use DosCopy/DosDelete instead of DosMove
|
---|
1102 | in this case.
|
---|
1103 |
|
---|
1104 | 2003-02-26: Sander van Leeuwen <sandervl@innotek >
|
---|
1105 | - RICHED32: o Rewrote control; no longer creates a child Edit window as this
|
---|
1106 | doesn't happen in Windows and breaks subclassing
|
---|
1107 | o EM_CHARFROMPOS is different for RichEdit controls (lParam is
|
---|
1108 | a POINTL pointer)
|
---|
1109 | o Implemented EM_FINDWORDBREAK
|
---|
1110 |
|
---|
1111 | 2003-02-25: Sander van Leeuwen <sandervl@innotek >
|
---|
1112 | - USER32: o Bugfix for WPS object creation
|
---|
1113 | - RICHED32: o Added support for EM_SETCHARFORMAT (text & background color)
|
---|
1114 | & EM_SETBKGNDCOLOR.
|
---|
1115 |
|
---|
1116 | 2003-02-24: Sander van Leeuwen <sandervl@innotek >
|
---|
1117 | - WS2_32: o Implemented non-overlapped WSARecv & WSASend.
|
---|
1118 | - WSOCK32: o check for local host name in gethostbyname. if identical,
|
---|
1119 | then use "localhost" instead
|
---|
1120 | - KERNEL32: o GetFullPathNameA: don't change the input string
|
---|
1121 | o Added ODIN_IsWin32App export to determine whether an app
|
---|
1122 | is a win32 or os2 binary.
|
---|
1123 | - USER32: o Changes for creating WPS objects (win32/os2 app)
|
---|
1124 | o Added function to convert an icon group in memory
|
---|
1125 | - SHELL32: o Convert win32 icon file to os2 format when creating a shell link.
|
---|
1126 |
|
---|
1127 | 2003-02-23: knut st. osmundsen <bird@anduin >
|
---|
1128 | - TOOLS/ALIASDEF:
|
---|
1129 | o A tool for generating alias records from an .def file.
|
---|
1130 | Something I wrote will playing with NTDLL here.
|
---|
1131 |
|
---|
1132 | 2003-02-22: Sander van Leeuwen <sandervl@innotek >
|
---|
1133 | - WS2_32: o Added WSARecv(From) & WSASend(To) stubs
|
---|
1134 |
|
---|
1135 | 2003-02-22: Platon Fomichev <stauff@innotek >
|
---|
1136 | - USER32: o Restoring maximized window from iconic state caused window
|
---|
1137 | frame controls to behave badly. General out-of-sync problems
|
---|
1138 | with frame controls. Invisibility of frame controls after
|
---|
1139 | lots of minimizing/restoring.
|
---|
1140 |
|
---|
1141 | 2003-02-22: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
1142 | - SHELL32: o Shell file operation updates
|
---|
1143 |
|
---|
1144 | 2003-02-20: knut st. osmundsen <Knut.Osmundsen@innotek >
|
---|
1145 | - KERNEL32: o Added custombuild API for registering a callback for LX Dll
|
---|
1146 | loading thru LoadLibrary*().
|
---|
1147 |
|
---|
1148 | 2003-02-18: Sander van Leeuwen <sandervl@innotek >
|
---|
1149 | - KERNEL32: o Touch last stack page using ESP. (just in case)
|
---|
1150 | o Cleaned up memory map code.
|
---|
1151 |
|
---|
1152 | 2003-02-17: Sander van Leeuwen <sandervl@innotek >
|
---|
1153 | - KERNEL32: o FindFirstFile: return ERROR_FILE_NOT_FOUND if DosFindFirst
|
---|
1154 | returns ERROR_PATH_NOT_FOUND
|
---|
1155 | - USER32: o Single Alt down + up always generates WM_SYSKEYUP; reset
|
---|
1156 | iMenuSysKey on WM_KEYUP, so the system menu isn't accidentally
|
---|
1157 | activated.
|
---|
1158 |
|
---|
1159 | 2003-02-16: Sander van Leeuwen <sandervl@innotek >
|
---|
1160 | - USER32: o ToAscii: fixed wrong checks for VK_SHIFT/CONTROL/MENU
|
---|
1161 | o Fixed broken implementation of GetKeyState, GetAsyncKeyState
|
---|
1162 | and GetKeyboardState
|
---|
1163 | o Do not translate WM_KEYUP to WM_SYSKEYUP if AltGr released
|
---|
1164 | and KC_LONEKEY flag is set. (only for Alt)
|
---|
1165 | o GetKeyboardState, GetKeyState, GetAsyncKeyState:
|
---|
1166 | pretend left Ctrl key is pressed if AltGr down.
|
---|
1167 | - PMKBDHK: o Special handling of AltGr key. Must send Ctrl key messages
|
---|
1168 | like Windows.
|
---|
1169 |
|
---|
1170 | 2003-02-14: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
1171 | - SHELL32: o Shell file operation updates
|
---|
1172 |
|
---|
1173 | 2003-02-13: Sander van Leeuwen <sandervl@innotek >
|
---|
1174 | - USER32: o Handle SetFocus(0) correctly: keystrokes are converted into
|
---|
1175 | WM_SYSKEYDOWN/(WM_SYSCHAR)/WM_SYSKEYUP messages
|
---|
1176 | o DrawFocusRect: conflict between SetROP2(R2_XORPEN) and
|
---|
1177 | SetBkMode(TRANSPARENT); commenting out the latter for now.
|
---|
1178 | - SHELL32: o Control panel Wine resync
|
---|
1179 | - KERNEL32: o Added ODIN_SetTIBSwitch function to override TIB selector
|
---|
1180 | switching.
|
---|
1181 | o Forward RtlZero/Move/FillMemory to ntdll
|
---|
1182 | - NTDLL: o Cleaned up
|
---|
1183 |
|
---|
1184 | 2003-02-11: Sander van Leeuwen <sandervl@innotek >
|
---|
1185 | - USER32: o When a window is activated by a mouse click, we must set
|
---|
1186 | focus to the client window (and not the frame!).
|
---|
1187 | o GetSysColor: always return cached colors
|
---|
1188 |
|
---|
1189 | 2003-02-10: Sander van Leeuwen <sandervl@innotek >
|
---|
1190 | - KERNEL32: o Touch all stack pages we skip in the out of stack workaround for
|
---|
1191 | 16 bits code. Jumping over the guard page causes a protection
|
---|
1192 | violation exception.
|
---|
1193 | - USER32: o EnumThreadWindows: must return windows in Z-order
|
---|
1194 | (experiments show EnumThreadWindows in NT4 behaves like this)
|
---|
1195 |
|
---|
1196 | 2003-02-07: Sander van Leeuwen <sandervl@innotek >
|
---|
1197 | - DDRAW/NTDLL:
|
---|
1198 | o Rename resource directory
|
---|
1199 | - USER32: o Don't save position (for restore) in SetWindowPos if window
|
---|
1200 | is minimized .
|
---|
1201 |
|
---|
1202 | 2002-02-06: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
1203 | - USER32: o Edit control: fixed heap corruption in undo buffer
|
---|
1204 |
|
---|
1205 | 2003-02-06: Sander van Leeuwen <sandervl@innotek >
|
---|
1206 | - ODINCRT: o Rewrote critical sections to be safe on SMP systems
|
---|
1207 | (previous implementation had one flaw that happened
|
---|
1208 | to be triggered often on my SMP machine)
|
---|
1209 | - USER32: o Edit control: Always kill the timer if in captured state.
|
---|
1210 | The app can call ReleaseCapture before we get the WM_LBUTTONUP
|
---|
1211 | message.
|
---|
1212 | o Send WM_QUERYNEWPALETTE when a window receives focus
|
---|
1213 | o Translate WM_REALIZEPALETTE into WM_PALETTECHANGED
|
---|
1214 | - GDI32: o Must manually correct y coordinates for DIB section blit since
|
---|
1215 | we reset the y inversion back to 0.
|
---|
1216 | (subtract twice the viewport & windows origin y)
|
---|
1217 | o CreateDIBSection: don't get palette from DC if bitmap bits provided
|
---|
1218 |
|
---|
1219 | 2003-02-05: Sander van Leeuwen <sandervl@innotek >
|
---|
1220 | - KERNEL32: o Check ESP when calling the entrypoint of a newly created thread.
|
---|
1221 | If close to a 64kb boundary, adjust it. Some ancient 16 bits
|
---|
1222 | code will crash if there's not enough stack left.
|
---|
1223 |
|
---|
1224 | 2003-02-04: Sander van Leeuwen <sandervl@innotek >
|
---|
1225 | - KERNEL32: o Support DuplicateHandle for threads
|
---|
1226 | o Fixed command line parsing regression
|
---|
1227 | - DDRAW: o FS corruption in SetCooperativeLevel
|
---|
1228 |
|
---|
1229 | 2003-02-02: Sander van Leeuwen <sandervl@innotek >
|
---|
1230 | - INCLUDE\makefiles:
|
---|
1231 | o Define STATIC_CRT for all exe targets
|
---|
1232 |
|
---|
1233 | 2003-01-30: Sander van Leeuwen <sandervl@innotek >
|
---|
1234 | - KERNEL32: o CreateProcess changes for parsing the application name
|
---|
1235 | and command line strings
|
---|
1236 |
|
---|
1237 | 2003-01-29: Sander van Leeuwen <sandervl@innotek >
|
---|
1238 | - USER32: o OS/2 Look & Feel is now default
|
---|
1239 | o Use OS/2 colors again in OS/2 L&F mode
|
---|
1240 |
|
---|
1241 | 2003-01-28: Sander van Leeuwen <sandervl@innotek >
|
---|
1242 | - USER32: o Don't use DrawFocusRect from WGSS anymore
|
---|
1243 | - GDI32: o Fixes for InternalTextOutA without y-inversion (not activated)
|
---|
1244 |
|
---|
1245 | 2003-01-27: Platon Fomichev <platon@innotek >
|
---|
1246 | - INCLUDE: o Illegal calling convention specified for _System calling
|
---|
1247 | convention in headers for GCC. Bugs in ASM code for SetFS
|
---|
1248 | RestoreFS.
|
---|
1249 | - NTDLL: o In C++ files specify extern "C" for _System calling convention
|
---|
1250 | as well. Affected _DLL_InitTerm
|
---|
1251 |
|
---|
1252 | 2003-01-23: knut st. osmundsen <bird-odin-spam@anduin.net>
|
---|
1253 | - TOOLS\COMMON, TOOLS\WRC\U:
|
---|
1254 | o Define STATIC_CRT so wrapper headers doesn't kick in.
|
---|
1255 |
|
---|
1256 | 2003-01-23: Sander van Leeuwen <sandervl@innotek >
|
---|
1257 | - INCLUDE\*.mk:
|
---|
1258 | o Don't use include\incl_vac for statically linked targets
|
---|
1259 | (e.g. tools)
|
---|
1260 | - ODINCRT: o Added wrappers for new & delete operators
|
---|
1261 | - ODINPROF, IPLOG, OLE32\REGSVR32;
|
---|
1262 | o Link with static CRT library
|
---|
1263 | - MAKE\setup.mak:
|
---|
1264 | o Only add include\incl_vac if not building an odin32 app
|
---|
1265 |
|
---|
1266 | 2003-01-23: Platon Fomichev <platon@innotek >
|
---|
1267 | - DOC: o Added build instructions for GCC
|
---|
1268 | - NTDLL: o Made initntdll a C file to remove C++ GCC stuff for now
|
---|
1269 | and added RtlBitmap support from Wine.
|
---|
1270 | - INCLUDE: o Correced odinlx.h header - problem while compiling with
|
---|
1271 | C compiler.
|
---|
1272 |
|
---|
1273 | 2003-01-22: Sander van Leeuwen <sandervl@innotek >
|
---|
1274 | - ODINCRT: o Renamed wrapper functions
|
---|
1275 | - INCLUDE\incl_vac:
|
---|
1276 | o Changed VAC headers to rename memory and file functions
|
---|
1277 | (those that change FS when called)
|
---|
1278 | - MAKE, INCLUDE\*.mk:
|
---|
1279 | o Add include\incl_vac first to include path (/I)
|
---|
1280 | - KERNEL32: o Removed WriteLogError
|
---|
1281 |
|
---|
1282 | 2003-01-22: Platon Fomichev <platon@innotek >
|
---|
1283 | - NTDLL: o Dll load/unload changes
|
---|
1284 |
|
---|
1285 | 2003-01-21: Sander van Leeuwen <sandervl@innotek >
|
---|
1286 | - DDRAW: o Removed dependency on dive.dll. Load it on demand.
|
---|
1287 | - USER32: o Moved debug wrapper for DDE to dde.cpp
|
---|
1288 |
|
---|
1289 | 2003-01-19: Sander van Leeuwen <sandervl@innotek >
|
---|
1290 | - KERNEL32: o Only load LVM.DLL when we actually need it.
|
---|
1291 | o CreateProcess bugfix for thread id if launched directly
|
---|
1292 | o CreateFile returns ERROR_ALREADY_EXISTS if file not found
|
---|
1293 | and CREATE_NEW
|
---|
1294 | o Check and correct process type in thread wrapper. WinCreateMsgQueue
|
---|
1295 | fails for non-PM apps. We set it to PM in the VIO loader, but
|
---|
1296 | apparently it can be changed back.
|
---|
1297 |
|
---|
1298 | 2003-01-18: Sander van Leeuwen <sandervl@innotek >
|
---|
1299 | - KERNEL32: o FindFirstFile must return ERROR_FILE_NOT_FOUND when
|
---|
1300 | the specified file or directory isn't present.
|
---|
1301 | (OS/2 returns ERROR_NO_MORE_FILES)
|
---|
1302 |
|
---|
1303 | 2003-01-16: Sander van Leeuwen <sandervl@innotek >
|
---|
1304 | - KERNEL32: o Fixed heap corruption in CreateProcess (with current dir)
|
---|
1305 | - USER32: o Only the combo bitmap header is wrong; the others are fine
|
---|
1306 | (regression from 2003-01-05)
|
---|
1307 |
|
---|
1308 | 2003-01-16: Platon Fomichev <platon@innotek >
|
---|
1309 | - NTDLL: o Changes for building dll with GCC
|
---|
1310 |
|
---|
1311 | 2003-01-15: Platon Fomichev <platon@innotek >
|
---|
1312 | - MSVCRT: o Updates
|
---|
1313 | - VERSION: o Don't use crtdll
|
---|
1314 | - INCLUDE: o Updates for GCC builds
|
---|
1315 |
|
---|
1316 | 2003-01-14: Sander van Leeuwen <sandervl@innotek >
|
---|
1317 | - WINMM: o Delete all wave object on unload
|
---|
1318 | o Fix linked list synchronization
|
---|
1319 |
|
---|
1320 | 2003-01-13: Sander van Leeuwen <sandervl@innotek >
|
---|
1321 | - KERNEL32: o Don't allocate selectors anymore. Allocate tiled memory
|
---|
1322 | and call Dos32FlatToSel.
|
---|
1323 | o Get default stack size from PE header.
|
---|
1324 | o Thread handles not closed properly.
|
---|
1325 |
|
---|
1326 | 2003-01-12: Sander van Leeuwen <sandervl@xs4all >
|
---|
1327 | - KERNEL32: o Ported QueryDosDeviceA/W from Rewind
|
---|
1328 | Return all valid drive letters in QueryDosDeviceA/W(NULL)
|
---|
1329 | Return full device name for drive letters
|
---|
1330 | o Implemented IOCTL_SCSI_GET_CAPABILITIES
|
---|
1331 | o Do not fail CDIO init if media not present
|
---|
1332 |
|
---|
1333 | 2003-01-10: Sander van Leeuwen <sandervl@innotek >
|
---|
1334 | - KERNEL32: o Don't close handle in CloseHandle if HANDLE_FLAG_PROTECT_FROM_CLOSE
|
---|
1335 | flag set.
|
---|
1336 | o Implemented Set/GetHandleInformation
|
---|
1337 | o CreateFile: create handles that are not inherited by child
|
---|
1338 | processes by default
|
---|
1339 | Only enable inheritance if specified in security struct
|
---|
1340 | o Create(Named)Pipe: default = not inherited by child processes
|
---|
1341 | Only enable inheritance if specified in security
|
---|
1342 | struct.
|
---|
1343 | o DuplicateHandle; set inheritance flag with SetHandleInformation
|
---|
1344 | o CreateProcess: support for setting stdin/out/err handles
|
---|
1345 | of child process
|
---|
1346 | o PeekNamedPipe: - return ERROR_BROKEN_PIPE when used for unnamed
|
---|
1347 | pipes (which is not allowed in OS/2)
|
---|
1348 | (workaround)
|
---|
1349 | - USER32: o ScrollDC bugfix; must convert rectangle returned by GetClipBox
|
---|
1350 | to device coordinates
|
---|
1351 |
|
---|
1352 | 2003-01-10: Platon Fomichev <platon@innotek >
|
---|
1353 | - MSVCRT: o Updates
|
---|
1354 | - CRTDLL: o Wine port (forwarder dll to msvcrt)
|
---|
1355 |
|
---|
1356 | 2003-01-10: Herwig Bauernfeind <herwig.bauernfeind@aon >
|
---|
1357 | - ODINBUG: o Updated to version 0.5.8
|
---|
1358 |
|
---|
1359 | 2003-01-08: Sander van Leeuwen <sandervl@innotek >
|
---|
1360 | - KERNEL32: o SetTimeZoneInformation: save info in registry:
|
---|
1361 | HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
|
---|
1362 | o GetTimeZoneInformation: read info from registery if present;
|
---|
1363 | otherwise call WGSS
|
---|
1364 | o RegQueryValue(Ex)W: workaround to return bytes for strings
|
---|
1365 | must always be executed when lpcbData != NULL.
|
---|
1366 |
|
---|
1367 | 2003-01-07: Sander van Leeuwen <sandervl@innotek >
|
---|
1368 | - USER32: o Convert color masks to b&w in CreateIconIndirect
|
---|
1369 | - RICHED32: o Don't forward WM_NCCALCSIZE to Edit control or else the
|
---|
1370 | richedit parent's client area is resized. We already
|
---|
1371 | resize the Edit child in the WM_SIZE handler.
|
---|
1372 | o Wrong call to ctordtorTerm; removed it and ctordtorInit
|
---|
1373 | since there's no C++ code in that dll anyway.
|
---|
1374 | - ODININST: o Parse TZ environment variable and save timezone information
|
---|
1375 | to the registry. (default is CET if not found)
|
---|
1376 |
|
---|
1377 | 2003-01-06: Sander van Leeuwen <sandervl@innotek >
|
---|
1378 | - WSOCK32: o Better method to cancel all async requests in WSACleanup
|
---|
1379 | - USER32: o Invalidate window when it's resized and SWP_NOCOPYBITS
|
---|
1380 | is specified.
|
---|
1381 | o Fixed icon leak in IconForWindow method (call LoadImageA
|
---|
1382 | with LR_SHARED flag to reuse icons)
|
---|
1383 |
|
---|
1384 | 2003-01-06: Platon Fomichev <platon@innotek >
|
---|
1385 | - ConfigureGCC.cmd,
|
---|
1386 | INCLUDE\win\msvcrt,
|
---|
1387 | INCLUDE\emx makefiles
|
---|
1388 | MSVCRT:
|
---|
1389 | o Wine port of MSVCRT (build with GCC)
|
---|
1390 |
|
---|
1391 | 2003-01-05: Sander van Leeuwen <sandervl@innotek >
|
---|
1392 | - KERNEL32: o Added ODIN_SetDllLoadCallback; install a dll load hook
|
---|
1393 | that's called as soon as all exports are processed
|
---|
1394 | (so before any code is executed that can use the dll)
|
---|
1395 | o Added ODIN_SetProcAddress; override a name or ordinal export
|
---|
1396 | - USER32: o Corrected wrong bitmap headers in resources
|
---|
1397 | o Added workaround for handling black & white cursors
|
---|
1398 |
|
---|
1399 | 2002-01-05: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
1400 | - USER32: o Return MA_NOACTIVATE in listbox WM_MOUSEACTIVATE handler.
|
---|
1401 | (apparently not necessary anymore in Wine; so probably
|
---|
1402 | caused by something else)
|
---|
1403 |
|
---|
1404 | 2003-01-04: Sander van Leeuwen <sandervl@innotek >
|
---|
1405 | - USER32: o Corrected drawing of menubar in OS/2 L&F mode (when highlighted)
|
---|
1406 | o Fixed handling of single ALT to select menu
|
---|
1407 | o Use different color for highlighted menus (OS/2 L&F)
|
---|
1408 | - GDI32: o Removed broken handling of TA_RIGHT in TextOut
|
---|
1409 | o Flip bitmap in GetDIBits if height is negative
|
---|
1410 | o Only return bitfield data in GetDIBits if compression set
|
---|
1411 | to BI_BITFIELDS (and lpvBits is not NULL)
|
---|
1412 |
|
---|
1413 | 2003-01-03: Sander van Leeuwen <sandervl@innotek >
|
---|
1414 | - USER32: o Merged Rewind menu control
|
---|
1415 | o Fixed GetSystemMetrics(SM_CXMENUCHECK); should be 13
|
---|
1416 | o Always use windows system colors (even in OS/2 L&F mode)
|
---|
1417 |
|
---|
1418 | 2002-01-03: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
1419 | - KERNEL32: o Convert timezone names in Set/GetTimeZoneInformation as
|
---|
1420 | WGSS expects/returns ascii strings instead of unicode.
|
---|
1421 |
|
---|
1422 | 2003-01-02: Sander van Leeuwen <sandervl@innotek >
|
---|
1423 | - KERNEL32: o Set the codepage of the message queue for each new thread
|
---|
1424 | that is created. (done for the main thread in user32)
|
---|
1425 | - USER32: o Fix for composite keyboard character translation
|
---|
1426 | (e.g. ^ on german keyboards)
|
---|
1427 | o SystemParametersInfoA fix for SPI_GETNONCLIENTMETRICS in
|
---|
1428 | OS/2 L&F (font height must be negative)
|
---|
1429 | o Deactivate window when hiding it to force PM to switch focus.
|
---|
1430 | (Note: might cause regressions!)
|
---|
1431 | o Fixed behaviour of SetFocus(NULL); should return the current
|
---|
1432 | focus window.
|
---|
1433 |
|
---|
1434 | 2003-01-01: Sander van Leeuwen <sandervl@innotek >
|
---|
1435 | - USER32: o Fixes for windows with an iconless class and WS_EX_DLGMODALFRAME
|
---|
1436 | style. (they shouldn't have a system menu)
|
---|
1437 | (either right after creation or when the app add this extended
|
---|
1438 | style later on)
|
---|
1439 | o Remove minimize or maximize controls when the app requests it
|
---|
1440 | (OS/2 GUI mode)
|
---|
1441 | - GDI32: o Cleaned up SetDIBitsToDevice
|
---|