source: trunk/changelog@ 10472

Last change on this file since 10472 was 10472, checked in by sandervl, 22 years ago

* empty log message *

File size: 53.2 KB
RevLine 
[10472]1/* $Id: changelog,v 1.2682 2004-02-19 13:03:30 sandervl Exp $ */
[9049]2
[10472]3 2004-02-19: KO Myung-Hun <komh@chollian >
4 - KERNEL32: o DBCS fixes for console & resource functions
5
[10470]6 2004-02-17: Sander van Leeuwen <sandervl@innotek >
7 - GDI32: o CreateDCA: special handling of FILE and FILE: ports
8
[10464]9 2004-02-16: KO Myung-Hun <komh@chollian >
10 - USER32: o Edit control: DBCS related fixes
11
[10462]12 2004-02-16: Sander van Leeuwen <sandervl@innotek >
13 - USER32: o EndPaint; fixed region handle leaks
[10466]14 - GDI32: o Another region leak in GdiCombineVisRgnClipRgn fixed
[10468]15 o DIB Section: flush used the wrong RGB conversion
[10462]16
[10460]17 2004-02-13: Sander van Leeuwen <sandervl@innotek >
18 - KERNEL32: o Allocate memory for the map during CreateFileMapping and
19 free it when the map is destroyed
20
[10454]21 2004-02-12: Sander van Leeuwen <sandervl@innotek >
22 - GDI32: o PathToRegion failure bugfix + leak fixed
23 o SelectClipPath can fail in printer DCs. Pretend success.
[10456]24 - URLMON: o Added HlinkNavigateString, CreateAsyncBindCtx & IsAsyncMoniker stubs
[10454]25
[10452]26 2004-02-11: Sander van Leeuwen <sandervl@innotek >
27 - USER32: o HODIN_PREWINDOWCREATEDA extension added
28
[10446]29 2004-02-10: Sander van Leeuwen <sandervl@innotek >
30 - KERNEL32: o Added ODIN_SetProcessDword function to change the startup
31 information about size, position and state of the main
32 application window.
33 o Rewrote keyboard hook handler to post messages and swallow
34 the one it gets from PM.
35 - GDI32: o Wrong GdiCopyClipRgn return value
36 o Implemented SelectClipPath
37
[10441]38 2004-04-04: Platon Fomichev <pfomichev@alarity >
[10440]39 - USER32: o Fixed typo in PeekMessageA/W.
40
[10436]41 2004-01-30: knut st. osmundsen <bird-changelog@innotek >
42 - USER32: o AttachThreadInput implementation (read hack).
43 - OLE32: o Drag & Drop fixes.
44 o Resynced ole2.c with current wine.
45 - various: o Added DEBUG_LOGGING define to indicate logging in order to
46 make release mode logging possible. Changed a few places where
47 DEBUG were used to include/exclude logging related code.
48
[10426]49 2004-01-29: knut st. osmundsen <bird-changelog@innotek >
50 - KERNEL32: o Parse LANG to figure out the language id.
51 - INCLUDE: o Synced language IDs with current wine.
52 This includes moving them from winnls.h to winnt.h.
53 - WRC: o Synced lang2cps table with wine. (needed due to above header update)
54
[10417]55 2004-01-21: Sander van Leeuwen <sandervl@innotek >
56 - USER32: o DrawIconEx: handle cyWidth == 0 case correctly
57
[10411]58 2004-01-20: Sander van Leeuwen <sandervl@innotek >
59 - KERNEL32: o Wrote wrapper for our exception handler to clear the direction
60 flag on entry (reported by Dietrich Teickner)
61 - WINMM: o MCIWAVE.DRV updates from Wine
62 o mciSendCommandW update from Wine
63 o Hardcoded MCI drivers (cdaudio & waveaudio)
64 o Added LGPL license file
65
[10407]66 2004-01-19: Sander van Leeuwen <sandervl@innotek >
67 - USER32: o Allocate DC for windows with CS_CLASSDC style (one per window)
68
[10401]69 2004-01-15: KO Myung-Hun <komh@chollian >
70 - GDI32: o Cleanup of text functions
71
[10399]72 2004-01-15: knut st. osmundsen <bird-changelog@innotek >
73 - DBGWRAP: o Added optional display of caller address.
74 (Remove NO_CALLER #define)
75 - PE2LX: o Process imports in Ring-3.
76 - KERNEL32: o Rewrote pe2lx classes to match pe2lx import changes.
77 o Made pe2lx classes use the generic export lookup.
78 o Rewrote the generic PE export lookup in the base class
79 to use a binary search and support pe2lx images with
80 differnet RVA calculation.
81 o Fixed a couple of COMMIT_ALL issues where pages were touched
82 by winimagepeldr code before they were preloaded.
83 - USER32: o Removed duplicate (and dangerous) checks on framewindows
84 in a couple of enumerations (OSLibWinQueryClientWindow).
85 - MAKE: o Warn about uninitialized variables for C++ code.
86 (Looks like it give a lot of false warnings on C code, so
87 let's skip it there.)
88
[10388]89 2004-01-14: KO Myung-Hun <komh@chollian >
90 - GDI32: o Fixed Ft2CharStringPosAtW(), passing lCount instead len.
91 o Modified Ft2GetTextExtentW(). Now use OSLibGpiQueryCharStringPosAt().
92 o Fixed InternalTextOutAW(). When using font association, the height of
93 DBCS and SBCS chars may be different. In this case, background
94 color make stair below chars.
95 o Fixed GetTextExtentPointA() and GetTextExtentExPointA() to support DBCS.
96
[10375]97 2003-01-11: Sander van Leeuwen <sandervl@innotek >
[10381]98 - GDI32, USER32, KERNEL32:
99 o Major updates.
[10375]100
[10371]101 2004-01-08: KO Myung-Hun <komh@chollian >
102 - GDI32: o Fixed FONT_mbtowc(). If charset is 0, CP must not be 1252 in DBCS country.
[10424]103 o Restored calcDimensions(). The result of the old is the same as that
104 of O32_GetTextExtent().
[10371]105
[10366]106 2003-12-29: KO Myung-Hun <komh@chollian >
107 - GDI32: o GetTextExtentPointW fix
108 o GetTextExtentExPointA fix for DBCS leadbytes
109
[10364]110 2003-12-29: Dietrich Teickner <Dietrich_Teickner@t-online >
111 - GDI32: o GetTextExtentPointW fix
112
[10358]113 2003-12-12: Dietrich Teickner <Dietrich_Teickner@t-online >
114 - KERNEL32: o Fix for memory map offset
115
[10351]116 2003-12-01: KO Myung-Hun <komh@chollian >
117 - GDI32: o Use Warpsans Combined in DBCS environments
118 - SHLWAPI: o Forward wvnsprintfA/W to user32
119 - USER32: o wvsnprintfA/W: fixed ascii and unicode conversion
[10353]120 o Listbox: added index and length conversion between ANSI and UNICODE
[10351]121
[10345]122 2003-12-01: Dietrich Teickner <Dietrich_Teickner@t-online >
123 - SHELL32: o Fixed memory leak
124
[10337]125 2002-11-21: Dmitry Froloff <froloff@os2 >/Alex Samorukov (samm@os2.kiev )
126 - KERNEL32: o Support for Ukrainian language added
127 o Unicode table updates
128 - USER32: o Ukrainian resources added
129 - TOOLS\WRC:o Unicode table updates
130
[10331]131 2003-11-17: Sander van Leeuwen <sandervl@innotek >
132 - USER32: o Destroy switch entry before hiding window in DestroyWindow.
133 (workaround for XCenter problems)
[10333]134 - SHELL32: o Destroy icon cache imagelists in SIC_Destroy
[10331]135
[10320]136 2003-11-14: Sander van Leeuwen <sandervl@innotek >
137 - USER32: o Updates
138
139 2003-11-12: Sander van Leeuwen <sandervl@innotek >
140 - GDI32/USER32:
141 o Clip/visible region changes
142
[10315]143 2003-11-12: Dietrich Teickner <Dietrich_Teickner@t-online >
144 - SHELL32: o Resource updates
145 o Shell file operations updates
146
[10311]147 2003-11-11: knut st. osmundsen <bird-changelog@innotek >
148 - MAKE: o Added a set of custombuild rules to the root makefile.
149
[10307]150 2003-10-30: Sander van Leeuwen <sandervl@innotek >
151 - SHELL32: o Wrong if statement in recent SHAddToRecentDocs patch
152
[10290]153 2003-10-24: Sander van Leeuwen <sandervl@innotek >
154 - SHLWAPI: o Removed wrong debug wrappers for forwarders
[10293]155 - WININET: o Fixed initterm
[10302]156 - VERSION: o Resync with Wine
[10299]157 - PEBUILD: o Added
[10290]158
[10302]159 2003-10-25: knut st. osmundsen <bird-changelog@anduin >
160 - MAKE: o pe_*.obj changes for custombuilds.
161 o Custombuild objects goes into .\bin\<buildmode>.cust so it's
162 possible to build both in the same tree.
163 o Don't build the src/custombuild directory as it's broken.
164
[10283]165 2003-10-22: Sander van Leeuwen <sandervl@innotek >
166 - USER32: o Use WC_FRAME for the Odin frame window and subclass it. There's
167 some PM code that makes assumptions about frame window names.
168 o Updates for new keyboard hook
169 - PMKBDHK: o Updates
[10281]170
[10274]171 2003-10-20: Sander van Leeuwen <sandervl@innotek >
[10302]172 - USER32: o PM windows should have no owner if none is specified. (instead
173 of their parent)
[10274]174 (NOTE: Potentially dangerous change!)
175
[10278]176 2003-10-20: Platon Fomichev <stauff@innotek >
[10302]177 - USER32: o On init we should migrate fonts that Windows applications
[10278]178 installed globally.
179
[10271]180 2003-10-16: Sander van Leeuwen <sandervl@innotek >
181 - SHELL32: o CommandLineToArgvW bugfix from Wine
[10273]182 - ADVAPI32: o Check for valid SID pointer in LengthSid
[10271]183
[10268]184 2003-10-13: Platon Fomichev <stauff@innotek >
185 - COMDLG32: o We should set/clear PD_PRINTTOFILE flag when we click on
186 checkbox to change dialog print structure.
187
[10271]188 2003-10-13: Sander van Leeuwen <sandervl@innotek >
189 - WINMM: o Make sure the timer object is not deleted inside the timer
190 callback handler
191
[10263]192 2003-10-06: Platon Fomichev <stauff@innotek >
193 - USER32: o Wrong class names (case) for Static, Scroller, Button.
[10265]194 - OLEAUT32: o GIF and JPEG static libs for IPicture interface implementation
[10263]195
[10262]196 2003-10-06: KO Myung-Hun <komh@chollian >
197 - USER32: o Fixed heap corruption when changing windows text (DBCS)
198
[10257]199 2003-10-01: Sander van Leeuwen <sandervl@innotek >
200 - USER32: o Clean up global critical section (window handles) during unload
[10258]201 - SHELL32: o Added stubs for SHGetNewLinkInfoA/W
[10257]202
203 2003-10-01: Platon Fomichev <stauff@innotek >
204 - USER32: o CallWindowProcA/W: don't fail if window handle is invalid
[10258]205 - SHELL32: o Add support for Unicode adding of files to 'recent document'
206 - COMCTL32: o Fixed bug when calling function by pointer in MRU funcs
[10257]207
[10255]208 2003-09-30: knut st. osmundsen <bird-odinspam@anduin >
209 - CMDQD: o Fixed code which messes with STD handles.
210
[10252]211 2003-09-18: KO Myung-Hun <komh@chollian >
[10255]212 - KERNEL32: o fixed GetAtomNameW() and GlobalGetAtomNameW() to support
[10252]213 unicode correctly. (DBCS)
214
[10249]215 2003-09-14: knut st. osmundsen <bird-odinspam@anduin >
216 - MAKE: o Synced with other projects using the new buildsystem (which
217 odin doesn really use yet).
218 - TOOLS/BIN:o Updated BuildEnv.cmd. Will now facilitate a global config
219 file in the ETC directory if not a local one is found.
220
[10244]221 2003-09-07: knut st. osmundsen <bird-odinspam@anduin >
222 - LIBWRAP: o Do all .asm's in with on ALP.
223
[10239]224 2003-08-22: Sander van Leeuwen <sandervl@innotek >
225 - USER32: o Ignore messages sent or posted to the desktop window
[10244]226 o Post/SendMessage: use shared or local memory depending
[10239]227 on the target window.
228
[10238]229 2003-08-20: Sander van Leeuwen <sandervl@innotek >
230 - USER32: o Do not create CD polling window by default. It can cause
231 PM hangs. (IOCtl blocks indefinitely)
232
[10225]233 2003-08-09: Sander van Leeuwen <sandervl@innotek >
234 - IPLOG: o Limit logfile size to 250 MB. When reached, reset file position
235 to start of file.
236
[10217]237 2003-08-08: Sander van Leeuwen <sandervl@innotek >
238 - TOOLS\CVTASM:
239 o Header parser and assembly wrapper generator
240 - LIBWRAP: o Assembly wrappers for WGSS and OS/2 functions
241 - USER32: o Update for libwrap
242
[10214]243 2003-08-07: KO Myung-Hun <komh@chollian >
244 - USER32: o Generate WM_IME_CHAR messages for DBCS input
245 o Process WM_IME_CHAR in Edit, Listbox, Combo controls and
246 default window procedures
247
[10211]248 2003-08-06: Sander van Leeuwen <sandervl@innotek >
[10244]249 - USER32: o Cleaned up GetMessage/PeekMessage.
[10211]250 o Removed DispatchMessage change for WM_CHAR; must return
[10244]251 the proper format in Get/PeekMessageA/W.
[10211]252 (assuming the GetMessageW/DispatchMessageA combination is
253 not allowed)
254
[10208]255 2002-08-06: Dmitry Froloff <froloff@os2 >
256 - KERNEL32: o HMDeviceConsoleOutClass::CreateFile; use current window size
257 instead of default
258
[10196]259 2003-08-01: Sander van Leeuwen <sandervl@innotek >
260 - USER32: o Fixed SPI_GETWHEELSCROLLLINES
[10199]261 - AVICAP32: o Added stub dll from Wine
[10200]262 - KERNEL32: o Added InitializeCriticalSectionAndSpinCount from Rewind
[10196]263
[10193]264 2003-07-31: KO Myung-Hun <komh@chollian >
265 - USER32: o fixed GetMenuStringA() to truncate DBCS string correctly.
266 o fixed GetMenuItemInfo_common() to truncate DBCS string correctly.
[10244]267 o fixed WM_GETTEXT of Win32BaseWindow::DefWindowProcA() and
[10193]268 Win32BaseWindow::DefWindowProcW() to ensure null-terminator.
269 o fixed Win32BaseWindow::GetWindowTextA() and Win32BaseWindow::GetWindowTextW()
270 to ensure null-terminator.
271 o fixed memory allocation for windowNameW. When open 'Open common dialog box'
272 memory block of windowNameW is overwritten.
273 o fixed MessageBoxIndirectW() to support unicode correctly.
[10244]274 o fixed OSLibWinDispatchMsg() to distinguish ascii message from
275 unicode message in case of the message being sent directly
[10193]276 o fixed OS2ToWinMsgTranslate() to process DBCS input.
277 o fixed Win32BaseWindow::MsgChar() to distinguish ascii from unicode message.
278 o fixed Win32BaseWindow::MsgCreate(), Win32BaseWindow::DefWindowProcA(),
279 Win32BaseWindow::DefWindowProcW() to process messages related to
280 window name such as WM_GETTEXT, WM_GETTEXTLENGTH, WM_SETTEXT, and so on.
281 o fixed Win32BaseWindow::GetWindowTxtLength(), Win32BaseWindow::GetWindowTextA(),
282 and Win32BaseWindow::GetWindowTextW() to process window name correctly.
283 o fixed DispatchMessageW() to call CallWindowProcW() not CallWindowProcA().
284 o fixed WINPROC_UnmapMsg32ATo32W(). len is first word of ptr not lParam on EM_GETLINE.
285 o changed a parameter WPARAC wParam to WPARAC *wParam of WINPROC_MapMsg32WTo32A() and
286 WINPROC_UnmapMsg32WTo32A() to process WM_GETTEXT.
287 o fixed WINPROC_MapMsg32WTo32A(). When EM_GETLINE mapped, first word of lParam
288 is ascii length not unicode length.
289 o improved WINPROC_CallProc32ATo32W() and WINPROC_CallProc32WTo32A() to process WM_CHAR
290 and WM_GETTEXTLENGTH, LB-GETTEXTLEN, CB_GETLBTEXTLEN.
[10194]291 o fixed edit control to process WM_CHAR including splitted DBCS chars.
[10244]292 o fixed listbox control to process WM_CHAR including splitted DBCS chars.
[10193]293
[10188]294 2002-07-31: Dmitry Froloff <froloff@os2 >
295 - USER32: o Convert WM_CHAR characters to UTF-16 for unicode windows
296
[10180]297 2003-07-28: Platon Fomichev <stauff@innotek >
298 - WMC: o Port of Wine Windows Message Compiler
[10244]299 - KERNEL32: o Fixed loading of unicode messages and added loading of
[10183]300 internal ones. (message file from Rewind)
[10180]301
302 2003-07-28: knut st. osmundsen <bird-odin-spam@anduin >
[10179]303 - USER32: o Updates
304 - OLEPRO32: o Updates
305 - ODINCRT: o Use fast method to query pid & tid in critical sections
306
[10180]307 2003-07-28: Sander van Leeuwen <sandervl@innotek >
[10179]308 - USER32: o Updates
309 - WINMM: o Updates
310 - OLE32: o Updates
311 - SHELL32: o Return 'My Computer' when an applications asks for the
312 'Network Places' shell32 object
313 o Filter out hidden files in CreateFolderEnumList if not wanted (Wine update)
314 o Also check for SFGAO_HASSUBFOLDER flag when deciding whether or
315 not to clear SFGAO_FOLDER & SFGAO_HASSUBFOLDER!
316 (---> submit to Wine)
317
[10171]318 2003-07-16: KO Myung-Hun <komh@chollian >
319 - SHELL32: o DragQueryFileW; allocate more for unicode conversion (DBCS)
[10175]320 - WINMM: o Fixed mciGetErrorStringW() to prevent buffer overflow.
[10244]321 o Fixed midiInGetErrorText() and midiOutGetErrorText()
[10175]322 to prevent buffer overflow.
323 o Fixed waveInGetErrorTextW() to prevent buffer overflow.
324 o Fixed waveOutGetErrorTextW() to prevent buffer overflow.
325 - GDI32: o Fixed GetTextFaceW() to support unicode correctly. (DBCS)
326 o Fixed calcDimensions(). The width is one point - other point + 1
327 (code currently not active)
[10177]328 - KERNEL32: o Added functions to query length after ascii or unicode conversion
[10244]329 o Changed the destination length parameter name of lstrcpynWtoA()
[10177]330 and lstrcpynAtoW().
[10171]331
[10170]332 2002-07-16: Yuri Dario <mc6530@mclink >
333 - INSTALL: o Do not overwrite program files registry entry if it already
334 exists and is valid.
335
[10168]336 2003-07-16: Dietrich Teickner <Dietrich_Teickner@t-online >
337 - GDI32: o Fix for partial blits in StretchDIBits
338
[10164]339 2003-07-14: KO Myung-Hun <komh@chollian >
[10244]340 - GDI32: o Fixed InternalTextOutW() and GetTextExtentPointW() to support
[10164]341 unicode correctly. (DBCS)
[10166]342 - COMCTL32: o Fixed PROPSHEET_CollectSheetInfoA() and PROPSHEET_SetTitleA()
343 to convert ascii to unicode correctly. (DBCS)
344 o Fixed TREEVIEW_TVItemFromItem() and TREEVIEW_BeginLabelEditNotify()
345 to convert ascii to unicode correctly. (DBCS)
346 o Fixed TREEVIEW_SetItemW() to convert unicode to ascii correctly. (DBCS)
[10164]347
[10161]348 2003-07-11: Dietrich Teickner <Dietrich_Teickner@t-online >
349 - SHELL32: o Shell folder updates
350
[10160]351 2003-07-09: knut st. osmundsen <bird-odinspam@anduin >
352 - MAKEFILES:o Invoke RC directly and not thru the CMDQD.
353
[10158]354 2002-07-07: Dmitry Froloff <froloff@os2 >
355 - PMKDBHK: o Pass Alt-Shift on to PM (Russian language switch hotkey)
356
[10179]357 2003-07-03: Sander van Leeuwen <sandervl@innotek >
358 - USER32: o Free drag transfer structure after sending DM_RENDERCOMPLETE
359 o MapVirtualKey: when mapping VK_A-VK_Z, VK_0-VK_9 to their
360 scancodes, use hardcoded character mapping for convertion.
361
[10146]362 2003-06-26: Platon Fomichev <stauff@innotek >
363 - USER32: o ShowWindow(SW_RESTORE) should start the same PM restoration
364 routine as WM_SYSCOMMAND
365
[10135]366 2003-06-03: Sander van Leeuwen <sandervl@innotek >
367 - USER32: o Don't search for keyboard accelerators in the default
368 WM_SYSKEYDOWN handler. That's already done in TranslateAccelerator
[10137]369 o Send focus messages when we receive the undocumented WM_FOCUSCHANGED
370 PM message. Removes the need for the ugly hack to deal with
371 nested focus changes.
[10138]372 - COMCTL32: o Rebar fix for recursive size changes
[10135]373
[10133]374 2003-06-02: Sander van Leeuwen <sandervl@innotek >
375 - KERNEL32: o CreatePipe: create unique named pipe
376 o CreateNamedPipe: fixed return value + wrong check for duplex pipe
377
[10128]378 2003-05-29: Platon Fomichev <stauff@innotek >
379 - COMCTL32: o Listview selection draw code was not ok with OS/2 look
380
[10124]381 2003-05-28: Platon Fomichev <stauff@innotek >
382 - COMCTL32: o OWNERDRAW fixes for ListView control
383
[10120]384 2003-05-27: Sander van Leeuwen <sandervl@innotek >
385 - USER32: o Do not send WM_STYLECHANGING/ED messages when the scrollbar
386 control is shown or hidden.
[10121]387 o PeekMessage fix (regression from 5-16)
[10120]388
[10117]389 2003-05-26: Sander van Leeuwen <sandervl@innotek >
390 - COMCTL32: o Use the new resources from Wine.
391
[10112]392 2003-05-26: Platon Fomichev <stauff@innotek >
[10114]393 - COMCTL32: o Listview selection draw code was incomplete due to resync.
394
395 2003-05-26: Platon Fomichev <stauff@innotek >
[10112]396 - COMCTL32: o Patrick's 2001 fixes broke too much. Stay with ReWind for now.
397
[10110]398 2003-05-23: Sander van Leeuwen <sandervl@innotek >
399 - KERNEL32: o ClearCommError: lpdwError is allowed to be NULL
400
[10103]401 2003-05-16: Sander van Leeuwen <sandervl@innotek >
[10160]402 - USER32: o Use our fast critical sections instead of OS/2 mutex semaphores
[10103]403 in the timer code.
[10105]404 o Handle WM_(SYS)TIMER timer calls in DispatchMessageA/W.
405 We previously called timer handlers when we received WM_TIMER
406 from PM. That's not correct. These messages must be returned
[10160]407 by Get/PeekMessage. The handler will not be called if the
[10105]408 timer message is not dispatched. (verified in NT4)
[10103]409
410 2003-05-16: Platon Fomichev <stauff@innotek >
411 - USER32: o Eat first WM_MOUSEMOVE while menu tracking like windows does
412 to prevent 'auto-clicking' on popup menus that appear in the
413 area of first mouse-click
414
[10092]415 2003-05-15: Sander van Leeuwen <sandervl@innotek >
416 - USER32: o Window creation: updated the coordinate fix code with the latest Rewind version
[10094]417 o ReleaseDC: always verify window associated with DC
[10096]418 - COMCTL32: o Complete resync with latest Wine (except draglist)
[10160]419 o Implemented LVM_APPROXIMATEVIEWRECT for LVS_REPORT controls
[10099]420 (needed to get rid of a crash; very likely to be incorrect)
[10092]421
[10086]422 2003-05-14: Sander van Leeuwen <sandervl@innotek >
[10160]423 - GDI32: o DIB section: do not fetch more colors from a bitmap header than
[10086]424 biClrUsed (if != 0)
425 o GetDIBits: save and restore negative height & log failure
426 - USER32: o Do not send any SetWindowPos related messages if the state
427 of the window doesn't change.
428
[10084]429 2003-05-12: Sander van Leeuwen <sandervl@innotek >
430 - KERNEL32: o _lopen: wrong parsing of mode parameter
431 (only found now due to CreateFile changed with dwDesiredAccess)
432
[10080]433 2003-05-07: Sander van Leeuwen <sandervl@innotek >
434 - USER32: o Added more members to the TEB structure
435
[10075]436 2003-05-06: Sander van Leeuwen <sandervl@innotek >
437 - KERNEL32: o Fixed closing of parent file handle by duplicate memory map
[10160]438 o Compare file names instead of handles when checking for
[10075]439 duplicate file maps.
[10077]440 - USER32: o ReleaseDC check if hwnd parameter is correct (WindowFromDC(hdc))
441 o Messagebox: Wrong ReleaseDC call
[10075]442
[10072]443 2003-05-06: knut st. osmundsen <bird-odin-spam@anduin >
444 - KERNEL32: o Corrected the handling of OF_PARSE in OpenFile.
445
[10065]446 2003-05-05: Sander van Leeuwen <sandervl@innotek >
447 - KERNEL32: o Handle files opened with 0 for dwDesiredAccess seperately.
448 Those handles can only be used with a limited nr of functions
449 (such as GetFileType/Size/Time)
[10068]450 - IPHLPAPI: o Implemented GetIpAddrTable, GetIfTable & GetFriendlyIfIndex
[10065]451
[10058]452 2003-05-02: Sander van Leeuwen <sandervl@innotek >
453 - USER32: o Keep track of all open window DCs
454 o During WM_VRNENABLED we must query the visible region
455 of all open DCs to ensure that GPI updates the visible
456 region (e.g. when a window has moved).
457 A bug in PM/GPI causes open DCs to get out of sync when
458 moving windows with full window drag enabled.
459 (without full window drag there is no such problem due
460 to the use of LockWindowUpdate)
461
[10062]462 2003-04-30: Platon Fomichev <stauff@innotek >
463 - USER32: o In WM_PARENTNOTIFY correctly map window coordinates for each
464 window we send this message to.
465 Correctly finish PM minimize sequence.
466 Correctly switch titlebar higlight on activate/deactivate.
467
[10051]468 2003-04-30: Dietrich Teickner <Dietrich_Teickner@t-online >
469 - SHLWAPI: o Fixed PathIsUrlA/W
470 - KERNEL32: o Changed dll renaming to include extension if it's not .dll
471 - ODIN.INI: o Update for kernel32 change
472 (IMPORTANT: must update your odin.ini with this one or
473 delete the current file)
474
[10044]475 2003-04-27: Platon Fomichev <stauff@innotek >
476 - USER32: o Correctly finish PM restore procedure from minimized state.
477 o Use Stock brush for minimized icon fill when it is not
478 allocated.
479
[10042]480 2003-04-25: Sander van Leeuwen <sandervl@innotek >
[10160]481 - NTDLL: o Initialize kernel32 first (circular dependency between
[10042]482 kernel32 & ntdll)
483
[10040]484 2003-04-25: knut st. osmundsen <bird-odin-spam@anduin >
485 - USER32: o Fake window subclass FS bugfix.
486
[10037]487 2003-04-24: knut st. osmundsen <bird-odin-spam@anduin >
488 - USER32: o Fake window init bugfixes
489
[10034]490 2003-04-24: Sander van Leeuwen <sandervl@innotek >
491 - USER32: o EndDialog: Enable owner window regardless of whether it was
492 enabled before dialog creation. When the owner
493 is disabled and we hide the dialog, then PM switches
494 focus to another application. (hidden windows cannot
495 have focus)
496 o Win32BaseWindow::GetWindowFromOS2Handle: also check fake
497 windows)
498
[10036]499 2003-04-24: Platon Fomichev <stauff@innotek >
500 - USER32: o Fixed restore/maximize from minimized state for MDI windows.
501
[10024]502 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
[10030]503 - USER32: o Properties allocated from shared memory.
504 o Fake window updates.
505
506 2003-04-15: knut st. osmundsen <bird-odin-spam@anduin >
[10024]507 - src/makefile:
508 o Build NTDLL too. (netlabs only)
509
[10049]510 2003-04-14: knut st. osmundsen <bird-odin-spam@anduin >
511 - USER32: o Implemented SW_SHOWDEFAULT.
512 - KERNEL32: o Changed initialization of StartupInfo to take the actual
513 values of the CreateProcess call (but for the strings).
514 (not complete)
515
[10011]516 2003-04-11: knut st. osmundsen <bird-odin-spam@anduin >
517 - USER32, KERNEL32, include/win/thread.h:
518 o Implemented WM_COPYDATA.
519
[10007]520 2002-04-11: Sander van Leeuwen <sandervl@innotek >
521 - USER32: o Send WM_WINDOWPOSCHANGED for ShowWindow(SW_SHOWWINDOW)
[10014]522 o Tool windows (WS_EX_TOOLWINDOW) don't have minimize or maximize
523 buttons. (testing shows this in NT4)
[10016]524 o Changed default hittest handler to check for WS_EX_TOOLWINDOW
525 (system menu & min/max buttons)
[10018]526 o MENU_TrackKbdMenuBar: check for WS_EX_TOOLWINDOW before using
527 the system menu.
[10014]528 o Display tool window titlebars in win32 style. They are supposed
529 to be thinner than standard PM titlebar controls.
[10007]530
[10009]531 2003-04-11: Dmitry Froloff <froloff@os2 >
532 - KERNEL32: o Console updates
533
[10002]534 2003-04-10: Platon Fomichev <stauff@innotek >
535 - MSVCRT : o MSVCRT updates, forwarders to stdcall functions, lots of funcs
536 now directly imported from NTDLL, resync with latest Wine
537 - EMXLIBS : o Added yet another wrapper for FS and added some funcs for new
538 msvcrt
539 - INCLUDE : o OS2SEL functions corrected for potential optimizing problems
540 in release build. (Bug found and corrected by Dietrich)
541
[9996]542 2002-04-09: Sander van Leeuwen <sandervl@innotek >
[10024]543 - KERNEL32: o Unmap memory view when deleting PE dll object.
[9996]544 (problem found by Dietrich)
545
[10000]546 2003-04-09: Platon Fomichev <stauff@innotek >
[10024]547 - COMCTL32: o Due to flaw in cdecl implementation of GCC temporary
[10000]548 correctly import _wtoi func from NTDLL
549 - EMXLIBS: o Possible endless loop in OS2FS replacement funcs
550 (problem found by Dietrich)
551
[9993]552 2003-04-08: Platon Fomichev <platon@innotek >
553 - USER32: o Treat LBUTTON press different from others in scrollbar. (WineX resync)
554
[9989]555 2002-04-08: knut st. osmundsen <Knut.Osmundsen@innotek >
556 - COMDLG32: o Corrected default printer init. It was crashing with big
557 printer setups and not handling multiple drivers per device
558 correctly.
559
[9987]560 2002-04-08: Sander van Leeuwen <sandervl@innotek >
561 - USER32: o Menu control: do not paint default menu item strings in bold
562 if in OS/2 GUI mode
563
[9984]564 2003-04-04: Platon Fomichev <platon@innotek >
565 - NTDLL: o Massive update. NTDLL internal tests, almost all
566 string and conversion funcs. Corrected and beautified .def file
567 - DOC: o Updated GCCBuildInstructions.txt for GCC 3.2.1
568
[9981]569 2003-04-03: Sander van Leeuwen <sandervl@innotek >
570 - WINMM: o Different method for detecting DirectAudio (uniaud, sblive, c-media)
571 o Added custom build function to disable DirectAudio (always use DART)
[9983]572 o Waveout (DART): handle underrun properly (next buffer write
573 and position after continueing)
[9981]574
[9978]575 2002-04-02: knut st. osmundsen <bird-odin-spam@anduin >
576 - WIN32K: o Win32VersionValue in OptionalHeader.
577
[9972]578 2002-04-02: Yuri Dario <mc6530@mclink >
579 - INCLUDE, GDI32, USER32, KERNEL32:
580 o Corrected & changed headers + source updates
581 - USER32: o Button: WM_SETTEXT fix
582
[9968]583 2003-04-02: Platon Fomichev <platon@innotek >
584 - INCLUDE, KERNEL32:
[9978]585 o Corrected HFILE definition as it is in Wine and in Win2k +
[9968]586 header updates.
587 - INCLUDE\EMXRUNTIME:
588 o Modified EMX headers
589 - LIB\EMXSUPPORT:
590 o Modified EMX libraries
591
[9967]592 2003-04-01: Sander van Leeuwen <sandervl@innotek >
593 - GDI32: o Fix for partial dibsection resyncs
594
[9965]595 2003-04-01: Platon Fomichev <stauff@innotek >
596 - USER32: o Functions for setting custom frame/cd/window class names
597
[9960]598 2003-03-31: Dietrich Teickner <Dietrich_Teickner@t-online >
599 - SHELL32: o Shell file operations update
600
[9961]601 2003-03-31: Platon Fomichev <platon@innotek >
[9978]602 - KERNEL32: o Added vsnprintfW/snprintfW funcs for syncing with latest
603 wine NTDLL
[9961]604
[9958]605 2003-03-31: knut st. osmundsen <bird-odin-spam@anduin >
606 - PE2LX/WIN32K:
607 o Custombuild feature for excluding dlls. Cleanups.
608 o Option for making all object RW file.
[9961]609 - KERNEL32: o Made Pe2Lx'ed DLLs work.
[9958]610
[9952]611 2003-03-28: Sander van Leeuwen <sandervl@innotek >
[9958]612 - USER32: o Removed changes for window tracking (move/size) with full
[9952]613 window dragging enabled (2003-03-27)
614
[9940]615 2003-03-27: Sander van Leeuwen <sandervl@innotek >
616 - USER32: o Don't change focus when processing mouse button message if
617 the top parent is a fake window
[9942]618 o Changes for window tracking (move/size) with full window
619 dragging enabled
[9947]620 - KERNEL32: o Memory map updates
[9940]621
[9937]622 2003-03-26: Sander van Leeuwen <sandervl@innotek >
[9958]623 - KERNEL32: o WaitForSingleObject/(Msg)WaitForMultipleObject fixes to
624 prevent thread priorities from being accidentally boosted to
[9937]625 time critical
626
[9932]627 2003-03-22: Sander van Leeuwen <sandervl@innotek >
[9958]628 - USER32: o If an application doesn't validate the update region
629 while processing WM_PAINT, then we must remember it for
630 the next time.
631 Windows will only send a WM_PAINT once until another part of
[9932]632 the window is invalidated. Unfortunately PM keeps on sending
633 WM_PAINT messages until we validate the update region.
634 This affects UpdateWindow, RedrawWindow, GetUpdateRgn, GetUpdateRect,
635 BeginPaint and the next WM_PAINT message.
636
[9926]637 2003-03-20: Sander van Leeuwen <sandervl@innotek >
638 - USER32: o WindowFromPoint: only send WM_NCHITTEST to windows belonging
639 to the current thread
[9929]640 o Changes for fake windows. Moved them into a seperate C++ class
641 and overload some methods to correct the behaviour.
[9926]642
[9923]643 2003-03-18: Platon Fomichev <platon@innotek >
644 - USER32: o Shift/Ctrl/Alt+Numpad keys illegal behaviour. Generic numpad
[9958]645 keys like (/*-+) produced garbage.
[9923]646
[9920]647 2003-03-12: Platon Fomichev <stauff@innotek >
648 - USER32: o GetKeyState and GetAsyncKeyState fixes for numpad keyboard
649
[9914]650 2003-03-06: Sander van Leeuwen <sandervl@innotek >
651 - KERNEL32: o Don't change the stack alignment if the thread has less than
652 128 kb stack.
[9915]653 - WINMM: o Improved accuracy of waveIn/OutGetPosition. (use FPU to prevent
654 rounding errors)
[9918]655 o Added code to dump played wave data to disk (disabled by default)
[9914]656
[9908]657 2003-03-06: knut st. osmundsen <Knut.Osmundsen@innotek >
658 - KERNEL32: o The WIN32LOG_FILEBASE env.var. can be used to point the logfile
659 elsewhere. "%d.log" is added to the value.
660 o Print szLineExceptionType too in exception dump.
661 o Custombuild apis for entering and leaving Odin thread context.
662 o Added functions to quickly get the PID & TID
663
[9905]664 2003-03-05: knut st. osmundsen <bird-odin-spam@anduin >
665 - MAKE: o Experimental OTHERS variable.
666 o Full source path to compilers.
667
[9899]668 2003-03-05: Sander van Leeuwen <sandervl@innotek >
669 - WINMM: o timeBegin/EndPeriod: check for upper and lower boundaries
670 o waveoutGetPosition: return 0 if stream is not active (DART)
671 o waveinGetPosition: return 0 if stream is not active (DART)
672 o Don't print a warning for CALLBACK_NULL callbacks
673 o Added ODIN_waveInSetFixedBuffers, renamed SetFixedWaveBufferSize
674 to ODIN_waveOutSetFixedBuffers. Used to tell WINMM to use
675 the waveOutWrite buffer size for the DART buffers.
[9906]676 o Don't pause the wave stream if no buffers left to add. Let
677 DART detect the underrun condition.
[9899]678
[9896]679 2003-03-04: Platon Fomichev <stauff@innotek >
680 - USER32: o We did not pay attention to numlock state on numpad keyboard.
681
[9894]682 2003-03-03: Dietrich Teickner <Dietrich_Teickner@t-online >
683 - GDI32: o ExtTextOutA: copy string and force zero termination
684 - SHELL32: o Minor updates
685
686 2003-03-03: Sander van Leeuwen <sandervl@innotek >
[9905]687 - WSOCK32: o Removed wrong checks for invalid address parameters in
[9894]688 sendto & recvfrom
689
690 2003-03-01: Sander van Leeuwen <sandervl@innotek >
691 - KERNEL32: o ExitProcess: turn off hard errors & exception popups before
692 calling O32_ExitProcess (release build only)
693 o DeleteFile: when deleting a .lnk file, verify if it's a shell
694 link object file. if so, delete WPS object
[9905]695 o ODIN_DisableFolderShellLink added: disable object creation in
696 Odin folder. Desktop shortcuts will still be created as WPS
[9894]697 objects on the desktop.
698 o OSLibWinCreateObject: create shelllink file with WPS object id
[9905]699 - USER32/KERNEL32:
[9894]700 o Move OSLibWinCreateObject to KERNEL32
[9905]701 - SHELL32: o Shelllink: use kernel32 file functions instead of those from
[9894]702 the VAC crt
703
[9873]704 2003-02-28: Sander van Leeuwen <sandervl@innotek >
705 - SRC\makefile:
[9905]706 o Skip msvcrt & crtdll for now. Causes too many problems with
[9873]707 Odin builds.
[9877]708 - KERNEL32: o Fixed CreateProcessA regression (Lotus Notes)
[9879]709 o Check for invalid data while measuring the CPU speed. DosTmrQueryTime
710 isn't very reliable (on laptops).
[9881]711 o ExitProcess: don't remove our exception handler too early
[9894]712 o Map ERROR_PATH_NOT_FOUND (OS/2) to ERROR_INVALID_NAME
713 - WINMM: o Protect linked timer list with VMutex object.
[9873]714
715 2003-02-28: knut st. osmundsen <Knut.Osmundsen@innotek >
716 - MAKEFILES:
717 o New rule cleanall which tries to wipe out all the output.
718 o ODIN32_LIB and ODIN32_BIN is now the same for all the CCENVs.
719 (AFAIK we no longer try compile stuff with many compiles, but
720 stick too the once which are working, VAC3 or EMX that is.)
721 o Linenumbers in release mode.
722 o Pass full source file names to compilers so the debugger easier
723 will find the the right source.
724 o Defined STATIC_CRT in src/win32k/utils.
725 o Profiling: Link with kProfile.lib when DEBUG= and PROFILE=1.
726 Configured this for EMX targets too. (state: Experimental)
727
[9870]728 2003-02-28: Platon Fomichev <stauff@innotek >
[9905]729 - USER32: o Wrong checks on restoration point remembering. Maximizing
[9870]730 window from PM icon using keyboard or menu produced wrong
731 controls.
732
[9867]733 2003-02-27: Sander van Leeuwen <sandervl@innotek >
734 - KERNEL32: o VirtualAlloc: fixed handling of commit for a page range
735 that is not entirely reserved (contains committed pages)
736 o Don't call WinMessageBox in the unhandled exception filter as
737 that can hang PM.
738
[9863]739 2003-02-27: Platon Fomichev <stauff@innotek >
740 - USER32: o Illegal PM sequence of maximizing from icon state corrected.
741 Inter-thread controls change caused PM lockups. Rewrote
742 PM window frame controls manipulation procedure.
743
[9860]744 2000-02-27: Achim Hasenmueller <achimha@innotek >
[9905]745 - KERNEL32: o MoveFile: detect if source and target file names are on a
[9860]746 different drive and use DosCopy/DosDelete instead of DosMove
747 in this case.
748
[9858]749 2003-02-26: Sander van Leeuwen <sandervl@innotek >
750 - RICHED32: o Rewrote control; no longer creates a child Edit window as this
751 doesn't happen in Windows and breaks subclassing
752 o EM_CHARFROMPOS is different for RichEdit controls (lParam is
753 a POINTL pointer)
754 o Implemented EM_FINDWORDBREAK
755
[9853]756 2003-02-25: Sander van Leeuwen <sandervl@innotek >
757 - USER32: o Bugfix for WPS object creation
[9855]758 - RICHED32: o Added support for EM_SETCHARFORMAT (text & background color)
759 & EM_SETBKGNDCOLOR.
[9853]760
[9840]761 2003-02-24: Sander van Leeuwen <sandervl@innotek >
762 - WS2_32: o Implemented non-overlapped WSARecv & WSASend.
[9842]763 - WSOCK32: o check for local host name in gethostbyname. if identical,
764 then use "localhost" instead
[9845]765 - KERNEL32: o GetFullPathNameA: don't change the input string
[9848]766 o Added ODIN_IsWin32App export to determine whether an app
767 is a win32 or os2 binary.
768 - USER32: o Changes for creating WPS objects (win32/os2 app)
769 o Added function to convert an icon group in memory
770 - SHELL32: o Convert win32 icon file to os2 format when creating a shell link.
[9840]771
[9839]772 2003-02-23: knut st. osmundsen <bird@anduin >
773 - TOOLS/ALIASDEF:
774 o A tool for generating alias records from an .def file.
775 Something I wrote will playing with NTDLL here.
776
[9837]777 2003-02-22: Sander van Leeuwen <sandervl@innotek >
778 - WS2_32: o Added WSARecv(From) & WSASend(To) stubs
779
[9835]780 2003-02-22: Platon Fomichev <stauff@innotek >
781 - USER32: o Restoring maximized window from iconic state caused window
782 frame controls to behave badly. General out-of-sync problems
783 with frame controls. Invisibility of frame controls after
784 lots of minimizing/restoring.
785
[9832]786 2003-02-22: Dietrich Teickner <Dietrich_Teickner@t-online >
787 - SHELL32: o Shell file operation updates
788
[9830]789 2003-02-20: knut st. osmundsen <Knut.Osmundsen@innotek >
[9839]790 - KERNEL32: o Added custombuild API for registering a callback for LX Dll
[9830]791 loading thru LoadLibrary*().
792
[9823]793 2003-02-18: Sander van Leeuwen <sandervl@innotek >
794 - KERNEL32: o Touch last stack page using ESP. (just in case)
[9825]795 o Cleaned up memory map code.
[9823]796
[9816]797 2003-02-17: Sander van Leeuwen <sandervl@innotek >
798 - KERNEL32: o FindFirstFile: return ERROR_FILE_NOT_FOUND if DosFindFirst
799 returns ERROR_PATH_NOT_FOUND
[9819]800 - USER32: o Single Alt down + up always generates WM_SYSKEYUP; reset
[9839]801 iMenuSysKey on WM_KEYUP, so the system menu isn't accidentally
[9819]802 activated.
[9816]803
[9809]804 2003-02-16: Sander van Leeuwen <sandervl@innotek >
805 - USER32: o ToAscii: fixed wrong checks for VK_SHIFT/CONTROL/MENU
806 o Fixed broken implementation of GetKeyState, GetAsyncKeyState
807 and GetKeyboardState
[9811]808 o Do not translate WM_KEYUP to WM_SYSKEYUP if AltGr released
809 and KC_LONEKEY flag is set. (only for Alt)
810 o GetKeyboardState, GetKeyState, GetAsyncKeyState:
811 pretend left Ctrl key is pressed if AltGr down.
812 - PMKBDHK: o Special handling of AltGr key. Must send Ctrl key messages
813 like Windows.
[9809]814
[9804]815 2003-02-14: Dietrich Teickner <Dietrich_Teickner@t-online >
816 - SHELL32: o Shell file operation updates
817
[9794]818 2003-02-13: Sander van Leeuwen <sandervl@innotek >
[9790]819 - USER32: o Handle SetFocus(0) correctly: keystrokes are converted into
820 WM_SYSKEYDOWN/(WM_SYSCHAR)/WM_SYSKEYUP messages
[9839]821 o DrawFocusRect: conflict between SetROP2(R2_XORPEN) and
[9794]822 SetBkMode(TRANSPARENT); commenting out the latter for now.
[9797]823 - SHELL32: o Control panel Wine resync
824 - KERNEL32: o Added ODIN_SetTIBSwitch function to override TIB selector
825 switching.
[9801]826 o Forward RtlZero/Move/FillMemory to ntdll
827 - NTDLL: o Cleaned up
[9790]828
[9784]829 2003-02-11: Sander van Leeuwen <sandervl@innotek >
830 - USER32: o When a window is activated by a mouse click, we must set
831 focus to the client window (and not the frame!).
[9786]832 o GetSysColor: always return cached colors
[9784]833
[9779]834 2003-02-10: Sander van Leeuwen <sandervl@innotek >
835 - KERNEL32: o Touch all stack pages we skip in the out of stack workaround for
836 16 bits code. Jumping over the guard page causes a protection
837 violation exception.
[9782]838 - USER32: o EnumThreadWindows: must return windows in Z-order
839 (experiments show EnumThreadWindows in NT4 behaves like this)
[9779]840
[9775]841 2003-02-07: Sander van Leeuwen <sandervl@innotek >
842 - DDRAW/NTDLL:
843 o Rename resource directory
[9839]844 - USER32: o Don't save position (for restore) in SetWindowPos if window
[9777]845 is minimized .
[9775]846
[9757]847 2002-02-06: Dietrich Teickner <Dietrich_Teickner@t-online >
848 - USER32: o Edit control: fixed heap corruption in undo buffer
849
[9755]850 2003-02-06: Sander van Leeuwen <sandervl@innotek >
851 - ODINCRT: o Rewrote critical sections to be safe on SMP systems
852 (previous implementation had one flaw that happened
853 to be triggered often on my SMP machine)
[9839]854 - USER32: o Edit control: Always kill the timer if in captured state.
[9759]855 The app can call ReleaseCapture before we get the WM_LBUTTONUP
856 message.
[9763]857 o Send WM_QUERYNEWPALETTE when a window receives focus
858 o Translate WM_REALIZEPALETTE into WM_PALETTECHANGED
[9761]859 - GDI32: o Must manually correct y coordinates for DIB section blit since
860 we reset the y inversion back to 0.
861 (subtract twice the viewport & windows origin y)
[9763]862 o CreateDIBSection: don't get palette from DC if bitmap bits provided
[9755]863
[9753]864 2003-02-05: Sander van Leeuwen <sandervl@innotek >
865 - KERNEL32: o Check ESP when calling the entrypoint of a newly created thread.
866 If close to a 64kb boundary, adjust it. Some ancient 16 bits
[9839]867 code will crash if there's not enough stack left.
[9753]868
[9746]869 2003-02-04: Sander van Leeuwen <sandervl@innotek >
870 - KERNEL32: o Support DuplicateHandle for threads
[9749]871 o Fixed command line parsing regression
[9751]872 - DDRAW: o FS corruption in SetCooperativeLevel
[9746]873
[9744]874 2003-02-02: Sander van Leeuwen <sandervl@innotek >
875 - INCLUDE\makefiles:
876 o Define STATIC_CRT for all exe targets
877
[9742]878 2003-01-30: Sander van Leeuwen <sandervl@innotek >
879 - KERNEL32: o CreateProcess changes for parsing the application name
880 and command line strings
881
[9740]882 2003-01-29: Sander van Leeuwen <sandervl@innotek >
883 - USER32: o OS/2 Look & Feel is now default
884 o Use OS/2 colors again in OS/2 L&F mode
885
[9734]886 2003-01-28: Sander van Leeuwen <sandervl@innotek >
887 - USER32: o Don't use DrawFocusRect from WGSS anymore
888 - GDI32: o Fixes for InternalTextOutA without y-inversion (not activated)
889
890 2003-01-27: Platon Fomichev <platon@innotek >
891 - INCLUDE: o Illegal calling convention specified for _System calling
[9839]892 convention in headers for GCC. Bugs in ASM code for SetFS
893 RestoreFS.
894 - NTDLL: o In C++ files specify extern "C" for _System calling convention
[9734]895 as well. Affected _DLL_InitTerm
896
[9720]897 2003-01-23: knut st. osmundsen <bird-odin-spam@anduin.net>
898 - TOOLS\COMMON, TOOLS\WRC\U:
899 o Define STATIC_CRT so wrapper headers doesn't kick in.
900
[9713]901 2003-01-23: Sander van Leeuwen <sandervl@innotek >
[9720]902 - INCLUDE\*.mk:
[9713]903 o Don't use include\incl_vac for statically linked targets
904 (e.g. tools)
905 - ODINCRT: o Added wrappers for new & delete operators
[9717]906 - ODINPROF, IPLOG, OLE32\REGSVR32;
907 o Link with static CRT library
908 - MAKE\setup.mak:
909 o Only add include\incl_vac if not building an odin32 app
[9713]910
[9726]911 2003-01-23: Platon Fomichev <platon@innotek >
912 - DOC: o Added build instructions for GCC
[9729]913 - NTDLL: o Made initntdll a C file to remove C++ GCC stuff for now
914 and added RtlBitmap support from Wine.
915 - INCLUDE: o Correced odinlx.h header - problem while compiling with
916 C compiler.
[9726]917
[9705]918 2003-01-22: Sander van Leeuwen <sandervl@innotek >
919 - ODINCRT: o Renamed wrapper functions
920 - INCLUDE\incl_vac:
921 o Changed VAC headers to rename memory and file functions
922 (those that change FS when called)
923 - MAKE, INCLUDE\*.mk:
924 o Add include\incl_vac first to include path (/I)
[9711]925 - KERNEL32: o Removed WriteLogError
[9705]926
[9702]927 2003-01-22: Platon Fomichev <platon@innotek >
928 - NTDLL: o Dll load/unload changes
929
[9696]930 2003-01-21: Sander van Leeuwen <sandervl@innotek >
931 - DDRAW: o Removed dependency on dive.dll. Load it on demand.
[9700]932 - USER32: o Moved debug wrapper for DDE to dde.cpp
[9696]933
[9692]934 2003-01-19: Sander van Leeuwen <sandervl@innotek >
935 - KERNEL32: o Only load LVM.DLL when we actually need it.
936 o CreateProcess bugfix for thread id if launched directly
937 o CreateFile returns ERROR_ALREADY_EXISTS if file not found
938 and CREATE_NEW
939 o Check and correct process type in thread wrapper. WinCreateMsgQueue
940 fails for non-PM apps. We set it to PM in the VIO loader, but
941 apparently it can be changed back.
942
[9690]943 2003-01-18: Sander van Leeuwen <sandervl@innotek >
944 - KERNEL32: o FindFirstFile must return ERROR_FILE_NOT_FOUND when
945 the specified file or directory isn't present.
946 (OS/2 returns ERROR_NO_MORE_FILES)
947
[9679]948 2003-01-16: Sander van Leeuwen <sandervl@innotek >
949 - KERNEL32: o Fixed heap corruption in CreateProcess (with current dir)
[9687]950 - USER32: o Only the combo bitmap header is wrong; the others are fine
951 (regression from 2003-01-05)
[9679]952
[9682]953 2003-01-16: Platon Fomichev <platon@innotek >
954 - NTDLL: o Changes for building dll with GCC
955
[9672]956 2003-01-15: Platon Fomichev <platon@innotek >
957 - MSVCRT: o Updates
958 - VERSION: o Don't use crtdll
959 - INCLUDE: o Updates for GCC builds
960
[9670]961 2003-01-14: Sander van Leeuwen <sandervl@innotek >
962 - WINMM: o Delete all wave object on unload
963 o Fix linked list synchronization
964
[9666]965 2003-01-13: Sander van Leeuwen <sandervl@innotek >
966 - KERNEL32: o Don't allocate selectors anymore. Allocate tiled memory
967 and call Dos32FlatToSel.
[9720]968 o Get default stack size from PE header.
[9666]969 o Thread handles not closed properly.
970
[9665]971 2003-01-12: Sander van Leeuwen <sandervl@xs4all >
972 - KERNEL32: o Ported QueryDosDeviceA/W from Rewind
973 Return all valid drive letters in QueryDosDeviceA/W(NULL)
974 Return full device name for drive letters
975 o Implemented IOCTL_SCSI_GET_CAPABILITIES
976 o Do not fail CDIO init if media not present
977
[9651]978 2003-01-10: Sander van Leeuwen <sandervl@innotek >
979 - KERNEL32: o Don't close handle in CloseHandle if HANDLE_FLAG_PROTECT_FROM_CLOSE
980 flag set.
981 o Implemented Set/GetHandleInformation
[9659]982 o CreateFile: create handles that are not inherited by child
983 processes by default
984 Only enable inheritance if specified in security struct
985 o Create(Named)Pipe: default = not inherited by child processes
[9720]986 Only enable inheritance if specified in security
[9659]987 struct.
[9651]988 o DuplicateHandle; set inheritance flag with SetHandleInformation
[9659]989 o CreateProcess: support for setting stdin/out/err handles
990 of child process
991 o PeekNamedPipe: - return ERROR_BROKEN_PIPE when used for unnamed
992 pipes (which is not allowed in OS/2)
993 (workaround)
[9661]994 - USER32: o ScrollDC bugfix; must convert rectangle returned by GetClipBox
995 to device coordinates
[9651]996
[9654]997 2003-01-10: Platon Fomichev <platon@innotek >
998 - MSVCRT: o Updates
999 - CRTDLL: o Wine port (forwarder dll to msvcrt)
1000
[9649]1001 2003-01-10: Herwig Bauernfeind <herwig.bauernfeind@aon >
1002 - ODINBUG: o Updated to version 0.5.8
1003
[9646]1004 2003-01-08: Sander van Leeuwen <sandervl@innotek >
1005 - KERNEL32: o SetTimeZoneInformation: save info in registry:
1006 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
1007 o GetTimeZoneInformation: read info from registery if present;
1008 otherwise call WGSS
1009 o RegQueryValue(Ex)W: workaround to return bytes for strings
1010 must always be executed when lpcbData != NULL.
1011
[9639]1012 2003-01-07: Sander van Leeuwen <sandervl@innotek >
1013 - USER32: o Convert color masks to b&w in CreateIconIndirect
[9640]1014 - RICHED32: o Don't forward WM_NCCALCSIZE to Edit control or else the
1015 richedit parent's client area is resized. We already
1016 resize the Edit child in the WM_SIZE handler.
[9642]1017 o Wrong call to ctordtorTerm; removed it and ctordtorInit
1018 since there's no C++ code in that dll anyway.
[9644]1019 - ODININST: o Parse TZ environment variable and save timezone information
1020 to the registry. (default is CET if not found)
[9639]1021
[9626]1022 2003-01-06: Sander van Leeuwen <sandervl@innotek >
1023 - WSOCK32: o Better method to cancel all async requests in WSACleanup
[9636]1024 - USER32: o Invalidate window when it's resized and SWP_NOCOPYBITS
1025 is specified.
1026 o Fixed icon leak in IconForWindow method (call LoadImageA
1027 with LR_SHARED flag to reuse icons)
[9626]1028
[9629]1029 2003-01-06: Platon Fomichev <platon@innotek >
[9630]1030 - ConfigureGCC.cmd,
[9629]1031 INCLUDE\win\msvcrt,
1032 INCLUDE\emx makefiles
1033 MSVCRT:
1034 o Wine port of MSVCRT (build with GCC)
1035
[9615]1036 2003-01-05: Sander van Leeuwen <sandervl@innotek >
1037 - KERNEL32: o Added ODIN_SetDllLoadCallback; install a dll load hook
1038 that's called as soon as all exports are processed
1039 (so before any code is executed that can use the dll)
1040 o Added ODIN_SetProcAddress; override a name or ordinal export
[9621]1041 - USER32: o Corrected wrong bitmap headers in resources
[9623]1042 o Added workaround for handling black & white cursors
[9615]1043
[9620]1044 2002-01-05: Dietrich Teickner <Dietrich_Teickner@t-online >
1045 - USER32: o Return MA_NOACTIVATE in listbox WM_MOUSEACTIVATE handler.
[9720]1046 (apparently not necessary anymore in Wine; so probably
[9620]1047 caused by something else)
1048
[9606]1049 2003-01-04: Sander van Leeuwen <sandervl@innotek >
1050 - USER32: o Corrected drawing of menubar in OS/2 L&F mode (when highlighted)
1051 o Fixed handling of single ALT to select menu
[9611]1052 o Use different color for highlighted menus (OS/2 L&F)
[9608]1053 - GDI32: o Removed broken handling of TA_RIGHT in TextOut
[9613]1054 o Flip bitmap in GetDIBits if height is negative
1055 o Only return bitfield data in GetDIBits if compression set
1056 to BI_BITFIELDS (and lpvBits is not NULL)
[9606]1057
[9595]1058 2003-01-03: Sander van Leeuwen <sandervl@innotek >
1059 - USER32: o Merged Rewind menu control
[9600]1060 o Fixed GetSystemMetrics(SM_CXMENUCHECK); should be 13
[9603]1061 o Always use windows system colors (even in OS/2 L&F mode)
[9595]1062
[9592]1063 2002-01-03: Dietrich Teickner <Dietrich_Teickner@t-online >
1064 - KERNEL32: o Convert timezone names in Set/GetTimeZoneInformation as
1065 WGSS expects/returns ascii strings instead of unicode.
1066
[9581]1067 2003-01-02: Sander van Leeuwen <sandervl@innotek >
1068 - KERNEL32: o Set the codepage of the message queue for each new thread
1069 that is created. (done for the main thread in user32)
[9720]1070 - USER32: o Fix for composite keyboard character translation
[9583]1071 (e.g. ^ on german keyboards)
[9585]1072 o SystemParametersInfoA fix for SPI_GETNONCLIENTMETRICS in
1073 OS/2 L&F (font height must be negative)
[9587]1074 o Deactivate window when hiding it to force PM to switch focus.
1075 (Note: might cause regressions!)
1076 o Fixed behaviour of SetFocus(NULL); should return the current
1077 focus window.
[9581]1078
[9574]1079 2003-01-01: Sander van Leeuwen <sandervl@innotek >
1080 - USER32: o Fixes for windows with an iconless class and WS_EX_DLGMODALFRAME
1081 style. (they shouldn't have a system menu)
1082 (either right after creation or when the app add this extended
1083 style later on)
[9579]1084 o Remove minimize or maximize controls when the app requests it
1085 (OS/2 GUI mode)
[9577]1086 - GDI32: o Cleaned up SetDIBitsToDevice
Note: See TracBrowser for help on using the repository browser.