Re: mscoree [1/2]: Add missing stubs to the spec file

2006-10-11 Thread Dmitry Timoshkov
"James Hawkins" <[EMAIL PROTECTED]> wrote: Is this information available in our winedump? I've always been confused about when to use ordinals and whent to use the @ symbol. I also used depends and that just gave me the ordinals. No, winedump is not able to dump contents of COFF .lib files,

Re: mscoree [1/2]: Add missing stubs to the spec file

2006-10-11 Thread James Hawkins
On 10/11/06, Dmitry Timoshkov <[EMAIL PROTECTED]> wrote: "James Hawkins" <[EMAIL PROTECTED]> wrote: > Ah ordinals, for this dll it's not a big deal because (probably) all > apps get the export by name instead of ordinal. For the installers > I've seen that's the case, and I can't imagine any ap

Re: mscoree [1/2]: Add missing stubs to the spec file

2006-10-11 Thread Dmitry Timoshkov
"James Hawkins" <[EMAIL PROTECTED]> wrote: Ah ordinals, for this dll it's not a big deal because (probably) all apps get the export by name instead of ordinal. For the installers I've seen that's the case, and I can't imagine any app working on both Home and Professional if the ordinals are dif

ws2_32/socket16.c:319

2006-10-11 Thread Michael [Plouj] Ploujnikov
I was doing janitorial Win64 printf format work on ws2_32 and noticed the following warning: ws2_32/socket16.c:319: warning: passing arg 3 of `WS_ioctlsocket' from incompatible pointer type which belongs to this piece of code: INT16 WINAPI ioctlsocket16(SOCKET16 s, LONG cmd, ULONG *argp) { re

Re: mscoree [1/2]: Add missing stubs to the spec file

2006-10-11 Thread James Hawkins
On 10/11/06, James Hawkins <[EMAIL PROTECTED]> wrote: On 10/11/06, Paul Chitescu <[EMAIL PROTECTED]> wrote: > On Wed, 11 Oct 2006, James Hawkins wrote: > > Hi, > > > > Changelog: > > * Add missing stubs to the spec file. > > > > dlls/mscoree/mscoree.spec | 125 +

Re: mscoree [1/2]: Add missing stubs to the spec file

2006-10-11 Thread James Hawkins
On 10/11/06, Paul Chitescu <[EMAIL PROTECTED]> wrote: On Wed, 11 Oct 2006, James Hawkins wrote: > Hi, > > Changelog: > * Add missing stubs to the spec file. > > dlls/mscoree/mscoree.spec | 125 +++-- > 1 files changed, 120 insertions(+), 5 deletions(-)

Re: mscoree [1/2]: Add missing stubs to the spec file

2006-10-11 Thread Paul Chitescu
On Wed, 11 Oct 2006, James Hawkins wrote: > Hi, > > Changelog: > * Add missing stubs to the spec file. > > dlls/mscoree/mscoree.spec | 125 > +++-- > 1 files changed, 120 insertions(+), 5 deletions(-) Interesting - what mscoree version are those ordinal

Cursor patches

2006-10-11 Thread H. Verbeet
Regenerated against git HEAD for whoever cares about these. Changes since last time: - user: format warning fixes - user: initialise cursor16 to 0 in destroy_cursor() - user: fix a small compile problem in the 6th patch, caused by splitting things up. (The 8th patch removes the relevant block) -

Re: opengl32: Correctly size and position opengl child windows

2006-10-11 Thread Willie Sippel
Am Freitag, 6. Oktober 2006 18:09 schrieb Willie Sippel: > Am Freitag, 6. Oktober 2006 15:26 schrieb Ulrich Czekalla: > > From our discussions at wineconf we concluded that overriding the > > various functions such as glViewport and glScissor will get us there for > > most applications. > > > > Th

Re: winedump: Cast-qual warnings fix

2006-10-11 Thread Andrew Talbot
> nothing against ULONG_PTR, more likely, my proposal only has one ugly > ULONG_PTR cast, while they were two I like your style! :) -- Andy.

Re: winedump: Cast-qual warnings fix

2006-10-11 Thread Eric Pouech
Andrew Talbot wrote: Eric Pouech wrote: actually, this would be better written as: ((PIMAGE_SECTION_HEADER)(DWORD_PTR)((LPCBYTE)&((const IMAGE_NT_HEADERS*)(ntheader))->OptionalHeader + \ ((const IMAGE_NT_HEADERS*)(ntheader))->FileHeader.SizeOfOptionalHeader))

Re: [PATCH] SPI_GETFONTSMOOTHINGORIENTATION and SPI_SETFONTSMOOTHINGORIENTATION are kown actions

2006-10-11 Thread James Hawkins
On 10/11/06, Christian Gmeiner <[EMAIL PROTECTED]> wrote: dlls/user/sysparams.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/user/sysparams.c b/dlls/user/sysparams.c index 35be4fa..921c4f6 100644 --- a/dlls/user/sysparams.c +++ b/dlls/user/sysparams.c @@ -2249,6

Red Hat Enterprise 3 packages for Wine?

2006-10-11 Thread Dan Kegel
The page http://www.winehq.com/site/download-rh is great, but nobody's built these packages since 0.9.2. Can someone whip out a White Box Enterprise Linux 3.0 build of 0.9.22? Thanks, Dan

Re: winedump: Cast-qual warnings fix

2006-10-11 Thread Andrew Talbot
Eric Pouech wrote: > actually, this would be better written as: > ((PIMAGE_SECTION_HEADER)(DWORD_PTR)((LPCBYTE)&((const > IMAGE_NT_HEADERS*)(ntheader))->OptionalHeader + \ >((const > IMAGE_NT_HEADERS*)(ntheader))->FileHeader.SizeOfOptionalHeader)) Hi Eric, I'm not see

Re: winedump: Cast-qual warnings fix

2006-10-11 Thread Eric Pouech
Dmitry Timoshkov wrote: "Andrew Talbot" <[EMAIL PROTECTED]> wrote: #define IMAGE_FIRST_SECTION(ntheader) \ - ((PIMAGE_SECTION_HEADER)((LPBYTE)&((PIMAGE_NT_HEADERS)(ntheader))->OptionalHeader + \ - ((PIMAGE_NT_HEADERS)(ntheader))->FileHeader.SizeOfOptionalHeader))

Re: comctl32: toolbar[1/5]: don't send NM_CUSTOMDRAW for separators (fixes bug #5572)

2006-10-11 Thread James Hawkins
On 10/11/06, MikoĊ‚aj Zalewski <[EMAIL PROTECTED]> wrote: Windows doesn't send them. I believe you, but it would be nice if you sent in a test with the change. -- James Hawkins

Re: winedump: Cast-qual warnings fix

2006-10-11 Thread Andrew Talbot
Dmitry Timoshkov wrote: > > UINT32 is not a 64-bit safe type. Please use ULONG_PTR instead. > Yes, I don't want to copy the way a certain other organization implemented its version. ;) Thanks, -- Andy.

Re: adding undocumented APIs to public headers

2006-10-11 Thread Alexandre Julliard
Robert Shearman <[EMAIL PROTECTED]> writes: > I think we should do this, but protect them with #ifdef __WINESRC__, > since we may want to use them internally, but we don't want them used > in things that may be built with the PSDK headers, like tests. We can do that for things that actually need

Re: winedump: Cast-qual warnings fix

2006-10-11 Thread Dmitry Timoshkov
"Andrew Talbot" <[EMAIL PROTECTED]> wrote: #define IMAGE_FIRST_SECTION(ntheader) \ - ((PIMAGE_SECTION_HEADER)((LPBYTE)&((PIMAGE_NT_HEADERS)(ntheader))->OptionalHeader + \ - ((PIMAGE_NT_HEADERS)(ntheader))->FileHeader.SizeOfOptionalHeader)) + ((PIMAGE_SECTION_HEADE

Re: adding undocumented APIs to public headers

2006-10-11 Thread Robert Shearman
James Hawkins wrote: Hey guys, What is our policy on adding undocumented functions to Wine's public headers? My stance is that we, as an alternative implementation of the Win32 API, provide another set of Win32 public headers, like Microsoft and cygwin/mingw provide as well. If our headers con

Re: [PATCH] Set window type in winex11.drv

2006-10-11 Thread Alexandre Julliard
"Nickolay V. Shmyrev" <[EMAIL PROTECTED]> writes: > While waiting for review I suggest a bit more advanced patch. It sets > dialog type for dialog and reorders call sequence. I don't think reordering the calls is useful, and it makes it harder to see what you are really changing. Please avoid tha

Re: Make all windows moveable by default

2006-10-11 Thread Dmitry Timoshkov
"Vitaliy Margolen" <[EMAIL PROTECTED]> wrote: Although I see the caption with my patch, I think that the problem is somewhere else: before and after my patch applied a window which is supposed to be fullscreen, doesn't cover KDE's app bar. That most So there is a problem still. I was dealing w

Re: Make all windows moveable by default

2006-10-11 Thread Vitaliy Margolen
Dmitry Timoshkov wrote: > "Vitaliy Margolen" <[EMAIL PROTECTED]> wrote: > >> - Start the program and navigate to a picture file >> - Double click on the file >> - If in window mode, switch to full screen (using middle button) >> - While in full screen mode use middle button to switch back to file

Re: Add IRunnableObject stub implementation

2006-10-11 Thread Huw Davies
On Wed, Oct 11, 2006 at 09:00:32AM -0400, Vijay Kiran Kamuju wrote: > Huw, > > Can you look at the debug log after applying the SupportInfo Patch in > the bug#6341. Well of course I see the app QI(IRunnableObject) but that doesn't mean that it should succeed. Note there are a bunch of unimplemen

kernel level drivers - next try

2006-10-11 Thread Marcus Meissner
Hi, I want to tackle the problem of loading and accessing kernel drivers again. Since the previous tries were met with design concerns, lets try to clarify design issues first. - Services are handled and registered by ADVAPI32. Currently we handle process type services correctly, which are

Re: Add IRunnableObject stub implementation

2006-10-11 Thread Vijay Kiran Kamuju
Huw, Can you look at the debug log after applying the SupportInfo Patch in the bug#6341. I think QI should be done for IXMLDocument not IXMLNode. I will try to do it for IXMLNode as well. Thanks, VJ On 10/11/06, Huw Davies <[EMAIL PROTECTED]> wrote: On Wed, Oct 11, 2006 at 12:55:41AM -0400, Vi

Re: Add IRunnableObject stub implementation

2006-10-11 Thread Huw Davies
On Wed, Oct 11, 2006 at 12:55:41AM -0400, Vijay Kiran Kamuju wrote: > I will wait on sending tests on this one. > Until the first one gets in > (http://www.winehq.org/pipermail/wine-patches/2006-September/030659.html) Ok, so let's look at that one. I think the problem here is that ISupportErrorIn

Re: wine segfaulting

2006-10-11 Thread Pavel Troller
Hi! > Marcus Meissner wrote: > >On Wed, Oct 11, 2006 at 11:32:47AM +0200, Markus Amsler wrote: > > > >>Hi, > >> > >>What kernel version/distro are you using? What about make test. > >> > >>I had similar strange behavior with 2.6.18 (debian/unstable > >>linux-image-2.6.18-1-686): wine segfaults i

Re: wine segfaulting

2006-10-11 Thread Markus Amsler
Marcus Meissner wrote: On Wed, Oct 11, 2006 at 11:32:47AM +0200, Markus Amsler wrote: Hi, What kernel version/distro are you using? What about make test. I had similar strange behavior with 2.6.18 (debian/unstable linux-image-2.6.18-1-686): wine segfaults in multiple situations. The stran

Re: msvcrt: fread: fill buffer on small reads

2006-10-11 Thread Markus Amsler
Duane Clark wrote: Alexandre Julliard wrote: Markus Amsler <[EMAIL PROTECTED]> writes: + /* fill empty buffer on small reads */ + if(!file->_cnt && rcnt <= MSVCRT_BUFSIZ) { +MSVCRT__filbuf(file); +/* reset internal buffer */ +file->_cnt++; +file->_ptr = file->_base; + }

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-11 Thread Paul Vriens
On Tue, 2006-10-10 at 16:32 -0500, Brad DeMorrow wrote: > Is Anyone currently working on this? > > If Not - I would like to start working on this part myself, it seems > like it is fairly simple - but tedious work :-) > > Shouldn't be too much of a hassle and should help a little > > --Brad

Re: wine segfaulting

2006-10-11 Thread Marcus Meissner
On Wed, Oct 11, 2006 at 11:32:47AM +0200, Markus Amsler wrote: > Hi, > > What kernel version/distro are you using? What about make test. > > I had similar strange behavior with 2.6.18 (debian/unstable > linux-image-2.6.18-1-686): wine segfaults in multiple situations. The > strangest was: make

Re: msvcrt: fread: fill buffer on small reads

2006-10-11 Thread Alexandre Julliard
Duane Clark <[EMAIL PROTECTED]> writes: > Are you referring to _read() or read_i()? Those don't have an > associated internal file buffer/cache (I guess because they don't have > an associated file->_cnt and _ptr). Or were you referring to some > other read call? > > fread already does a _read() o

Re: windows web server app fails to send more than 11680 bytes !?

2006-10-11 Thread [IDC]Dragon
> > > a +ntdll trace would be helpful > > > > How do I enable that? (likely a noob question) > WINEDEBUG=+ntdll wine foo.exe OK, got it. I have attached a log to the bugzilla entry. In addition, I also now attached an executable, complete with sample data, so anybody may quickly reproduce it. Th

Re: wine segfaulting

2006-10-11 Thread Markus Amsler
Hi, What kernel version/distro are you using? What about make test. I had similar strange behavior with 2.6.18 (debian/unstable linux-image-2.6.18-1-686): wine segfaults in multiple situations. The strangest was: make test failed/segfaulted in ntdll, but running the test manually with runtest