winedbg problems

2004-12-08 Thread Michael Lin
Hi all, I am having problem with winedbg and a winelib application I am trying to debug. In the debugger it produce the following output when exception occured: Wine-dbg>cont First chance exception: page fault on read access to 0x in 32-bit code ( 0x401d4316). Register dump: CS:0073 SS:0

Re: Fwd: Foobar2000 audio player Regression

2004-12-08 Thread Robert Shearman
Nick Hornback wrote: I originally posted this to the -users list, but I was contacted by Robbert Xerox, who had the exact same issue, and thus far nobody has replyed in the users list, so maybe it will get more attention here. Foobar2000 worked virtually perfectly in the 20041019 release

Re: shlwapi - forward SHSetTimerQueueTimer to kernel32.CreateTimerQueueTimer

2004-12-08 Thread Robert Shearman
Steven Edwards wrote: Hi, Msdn documents quite a bit about shlwapi functions that are wrappers around other functions: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_new/shlwapi_wrappers.asp But at the moment the application I am test

Re: Genrate stdole32.tlb file, and install generated files

2004-12-08 Thread Robert Shearman
Huw D M Davies wrote: On Wed, Dec 08, 2004 at 12:02:28PM +0100, Alexandre Julliard wrote: Mike Hearn <[EMAIL PROTECTED]> writes: Hmm, so the approach with a custom app generating stdole32.tlb is not OK? No, we can't run a Winelib app during the build process, and stdole32.tlb really

Re: Includes [1] ntdll

2004-12-08 Thread Robert Reif
Jon Griffiths wrote: Hi Rob, Do the patches take into account that a header might only be included to check that an exported function matches the declaration in the header file? No, I dont think that case can exist. Look at dxerr8 and dxerr9.

Re: fix crash in painting.c

2004-12-08 Thread Steven Edwards
Hi, --- Rein Klazes <[EMAIL PROTECTED]> wrote: > Several app's crash with the re-organized region code. > > Changelog: > dlls/user : painting.c > GetUpdateRect can be called with rect is NULL. Just tested here and this does fix the IE6 regressions I was seeing. Thanks Steven

Re: Includes [4] shlwapi

2004-12-08 Thread Alexandre Julliard
Jon Griffiths <[EMAIL PROTECTED]> writes: > It might be better to clean up the headers first then. By clean up I > take it you mean removing any header that aren't part of the platform > SDK? If that is the long term plan then it could be handled in 2 > steps a) remove all #includes from non-sdk h

Fwd: Foobar2000 audio player Regression

2004-12-08 Thread Nick Hornback
I originally posted this to the -users list, but I was contacted by Robbert Xerox, who had the exact same issue, and thus far nobody has replyed in the users list, so maybe it will get more attention here. > Foobar2000 worked virtually perfectly in the 20041019 > release (aside from some comctrl32

Re: Includes [1] ntdll

2004-12-08 Thread Jon Griffiths
Hi Rob, > Do the patches take into account that a header might only be > included to > check that an exported function matches the declaration in the > header file? No, I dont think that case can exist. Each .c file contains 5-20 or more functions that take flags/structs etc defined in the head

Re: Includes [4] shlwapi

2004-12-08 Thread Jon Griffiths
Hi, > The problem with that approach is that you remove a lot of headers > that are included anyway so it doesn't make any difference in build > time, and many of them will have to be added again once we finish > the header cleanup. For instance you remove winuser.h everywhere > win.h is included

Problems with Managed Mode

2004-12-08 Thread pvriens
Hi, just compiled wine (CVS from yesterday 12/7/2004). Started with a clean wine environment. Running 'wine notepad.exe' works fine. Running the same command when the config-file shows: [AppDefaults\\notepad.exe\\x11drv] "Desktop" = "800x600" gives: wine: Unhandled exception (thread 0009), st

tooltips problem with server side update region handling

2004-12-08 Thread Rein Klazes
Hi, There are now 4 little tooltips windows sticking on top of all windows and following me to every desktop I go :-(((. The problem seems to be that the call: SetWindowPos (hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOZORDER | SWP_HIDEWINDOW | SWP_NOACTIVATE); in TOOLTIPS_Hide() i

Re: [RESEND] Unicodified fontdlg (next try)

2004-12-08 Thread Alexandre Julliard
Jacek Caban <[EMAIL PROTECTED]> writes: > -INT_PTR CALLBACK FormatCharDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam, > +INT_PTR CALLBACK FormatCharDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, > LPARAM lParam) > { > -LPCHOOSEFONTA lpcf; > +LPCHOOSEFONTW lpcf; > INT_PTR res = F

Re: msvcrt: implement _pipe

2004-12-08 Thread Alexandre Julliard
Juan Lang <[EMAIL PROTECTED]> writes: > +fd = msvcrt_alloc_fd(readHandle, wxflags); > +if (fd != -1) > +{ > + pfds[0] = fd; > + fd = msvcrt_alloc_fd(writeHandle, wxflags); > + if (fd != -1) > +pfds[1] = fd; > +} > +if (fd == -1) > +{ > + CloseHan

Re: IMM_Register and Flight Simulator 98

2004-12-08 Thread Christian Costa
I have exactly the same problem here (with several apps). Removing the LoadCursorW call (ie setting wndClass.hCursor to NULL) in IMM_Register seems to prevent the crash. Robert Reif wrote: Just tried to install Flight Simulator 98 with latest CVS and got this: --

Re: Wine Bug Busters @ 7pm GMT

2004-12-08 Thread Mike Hearn
On Mon, 06 Dec 2004 13:56:30 +0200, Shachar Shemesh wrote: > Damn, had to miss it. Any impressions from the event? IRC logs? It was pretty good, a lot of people showed up which was fantastic. I was a bit disappointed that those people were mostly already experienced Wine developers, I was hoping t

Re: Searching for an existing Windows installation

2004-12-08 Thread Mike Hearn
On Wed, 08 Dec 2004 02:10:54 +0100, Christian Britz wrote: > because this step during the installation takes very long, I would > suggest to make it optional. We should disable it by default, especially as Windows XP is so common these days. It used to be that using a real 98 drive could improve t

Re: Searching for an existing Windows installation

2004-12-08 Thread Oliver Stieber
I would suggest: search for windows partitions. look on those partitions for boot.ini files or wine win95 equivilent. voila. ___ Win a castle for NYE with your mates and Yahoo! Messenger http://uk.messenger.yahoo.com

Re: Genrate stdole32.tlb file, and install generated files

2004-12-08 Thread Huw D M Davies
On Wed, Dec 08, 2004 at 12:02:28PM +0100, Alexandre Julliard wrote: > Mike Hearn <[EMAIL PROTECTED]> writes: > > > Hmm, so the approach with a custom app generating stdole32.tlb is not OK? > > No, we can't run a Winelib app during the build process, and > stdole32.tlb really has to be built like

Re: wine/ windows/win.c windows/painting.c server/ ...

2004-12-08 Thread Alexandre Julliard
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > 2. Bad news: it is *very* slow now. The repaint on > wine List\ View.exe > from the MS Control Spy is painful. > Similarly, menus are slow, dialog boxes, etc. > I have a fast machine (3GHz, 1GB RAM), and it takes > 2-3

Re: Includes [4] shlwapi

2004-12-08 Thread Alexandre Julliard
Jon Griffiths <[EMAIL PROTECTED]> writes: > winnls.h is included already by wine/unicode.h in url.c, so its not > needed again there. The script I wrote basically comments out the > includes one at a time, and restores any that caused a compile > failure when missing. The worst that could happen i

Re: Genrate stdole32.tlb file, and install generated files

2004-12-08 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > Hmm, so the approach with a custom app generating stdole32.tlb is not OK? No, we can't run a Winelib app during the build process, and stdole32.tlb really has to be built like everything else at compile time. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Wine CVS still broken

2004-12-08 Thread Francois Gouget
On Tue, 7 Dec 2004, Florian Goth wrote: I deleted my wine - folder and did a full cvs checkout today(23:00 CET ) But there's still a problem in winejack: Use one of the three patches that have been posted on wine-patches. Just to show I'm really impartial I attached mine. -- Francois Gouget