winrash and ntservice

2005-07-21 Thread Paul Walker
I just joined this list and noticed the nt service messages (below) I haven't investigated what winrash is, but _assuming_ that you need it as a service on NT, then the problem appears to be that it needs to display windows (or interact with the user somehow). The main problem will be that servic

printing problems

2005-07-21 Thread josie
Hi I've been running Delphi executables off of Wine and I just installed a default printer to my linux system. It's a miracle but I could print off of my Delphi executable on the first try. The only problem is the margins and page layout are little off. Nothing drastic, but the margins cutoff

Re: [wined3d] drawprint tidyup initilization of strided data.

2005-07-21 Thread Oliver Stieber
--- Dimi Paun <[EMAIL PROTECTED]> wrote: > > > +#define SET_STRIDED (_usage, _name) \ > > +case _usage: \ > > +strided->u.s._name.lpData = data; \ > > +strided->u.s._name.dwType = element->Type; \ > > +strided->u.s._name.dwStride = stride; \ > > +break; > > + > > +#define SET_STRIDED_(_usage

Re: Buttons in window title bar

2005-07-21 Thread Brian Vincent
On 7/21/05, Paul Vriens <[EMAIL PROTECTED]> wrote: > Nothing better than reading the code. I've added a key > HKCU\Wine\Fonts\Replacements and a String Value "Marlett" with "Wine > Marlett" as the data. Now the buttons show up nicely. Does that need to go in wine.inf? -Brian

Re: [wined3d] drawprint tidyup initilization of strided data.

2005-07-21 Thread Dimi Paun
> +#define SET_STRIDED (_usage, _name) \ > +case _usage: \ > +strided->u.s._name.lpData = data; \ > +strided->u.s._name.dwType = element->Type; \ > +strided->u.s._name.dwStride = stride; \ > +break; > + > +#define SET_STRIDED_(_usage, _name) \ > +case _usage: \ > +strided->u.s._name.lpData =

Re: Buttons in window title bar

2005-07-21 Thread Paul Vriens
On Thu, 2005-07-21 at 19:43, Paul Vriens wrote: > On Thu, 2005-07-21 at 15:15, Michael Jung wrote: > > On Thursday 21 July 2005 14:57, Frank Richter wrote: > > > On 21.07.2005 10:27, Paul Vriens wrote: > > > > Hi, > > > > > > > > if you mean the 3 rectangles instead of the Minimize/Maximize/Close >

Re: HHCTRL.OCX: fix W to A call

2005-07-21 Thread Saulius Krasuckas
* On Thu, 21 Jul 2005, James Hawkins wrote: > * On 7/21/05, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > > * On Thu, 21 Jul 2005, Dmitry Timoshkov wrote: > > > > > > I don't see much point in such a "fix". It actually fixes nothing, > > > and removes a readability of the message. > > > > And wh

Re: Update win32.api

2005-07-21 Thread Vincent Béron
Le jeu 21/07/2005 à 12:17, Francois Gouget a écrit : [snip] > Index: dlls/secur32/secur32.c > === > RCS file: /var/cvs/wine/dlls/secur32/secur32.c,v > retrieving revision 1.7 > diff -u -p -r1.7 secur32.c > --- dlls/secur32/secur32.c

Re: Buttons in window title bar

2005-07-21 Thread Paul Vriens
On Thu, 2005-07-21 at 15:15, Michael Jung wrote: > On Thursday 21 July 2005 14:57, Frank Richter wrote: > > On 21.07.2005 10:27, Paul Vriens wrote: > > > Hi, > > > > > > if you mean the 3 rectangles instead of the Minimize/Maximize/Close > > > buttons then Yeah I see the same thing. > > > > Hm, may

Writing tests when creating patches

2005-07-21 Thread Paul Vriens
Hi, I've noticed that in the past weeks there were several patches that contained a remark like: - checked on on windows - compared with native - ... Wouldn't it be nice if tests accompanied these fixes? Do we have some guidelines in this? I know that writing tests is not everybody's hobby. Ch

Re: HHCTRL.OCX: fix W to A call

2005-07-21 Thread James Hawkins
On 7/21/05, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > * On Thu, 21 Jul 2005, Dmitry Timoshkov wrote: > > * "Saulius Krasuckas" <[EMAIL PROTECTED]> wrote: > > > > > > ChangeLog: > > > Saulius Krasuckas <[EMAIL PROTECTED]> > > > Fix W to A call. > > > > I don't see much point in such a "fix". It

Re: HHCTRL.OCX: fix W to A call

2005-07-21 Thread Saulius Krasuckas
* On Thu, 21 Jul 2005, Dmitry Timoshkov wrote: > * "Saulius Krasuckas" <[EMAIL PROTECTED]> wrote: > > > > ChangeLog: > > Saulius Krasuckas <[EMAIL PROTECTED]> > > Fix W to A call. > > I don't see much point in such a "fix". It actually fixes nothing, and > removes a readability of the message.

wow32 forwards going into the void?

2005-07-21 Thread Marcus Meissner
Hi, dlls/wow32/wow32.spec forwards into our kernel32.dll by named imports. However, the referenced functions are no longer exported by name. Also jsut replacing the function by a number does not seem to work. How to fix? Ciao, Marcus pgpI1aCMcgPqj.pgp Description: PGP signature

Re: HHCTRL.OCX: fix W to A call

2005-07-21 Thread Felix Nawothnig
Dimi Paun wrote: I think it would be better to always use the W APIs. This way we can have tools to warn if we have W->A transitions. We lose a little in readability (a special grep tool anyone?), but we gain a simple rule to follow and enforce, which could be used by various tools, like winapi_c

Re: HHCTRL.OCX: fix W to A call

2005-07-21 Thread Dimi Paun
From: "Michael Jung" <[EMAIL PROTECTED]> > I would agree, but I thought there is a consensus to always use the unicode > APIs. There are several occurences in my patches, where I would have prefered > to use the ascii APIs (especially in RegQueryValue and the like). Would that > be ok? I think it

Re: HHCTRL.OCX: fix W to A call

2005-07-21 Thread Michael Jung
On Thursday 21 July 2005 15:42, Dmitry Timoshkov wrote: > "Saulius Krasuckas" <[EMAIL PROTECTED]> wrote: > > ChangeLog: > > Saulius Krasuckas <[EMAIL PROTECTED]> > > Fix W to A call. > > I don't see much point in such a "fix". It actually fixes nothing, > and removes a readability of the message.

Re: HHCTRL.OCX: fix W to A call

2005-07-21 Thread Dmitry Timoshkov
"Saulius Krasuckas" <[EMAIL PROTECTED]> wrote: ChangeLog: Saulius Krasuckas <[EMAIL PROTECTED]> Fix W to A call. I don't see much point in such a "fix". It actually fixes nothing, and removes a readability of the message. -- Dmitry.

Re: [wined3d] numblends

2005-07-21 Thread Oliver Stieber
--- Raphael <[EMAIL PROTECTED]> wrote: > On Wednesday 20 July 2005 20:18, you wrote: > > Hi, > > This patch corrects a problem with the way that FVF vertex arrays > > containing blends or orthographic is calcualted. > > > > This patch should get Axis and Allies and Kohan 2 started > > > > Go

Re: Buttons in window title bar

2005-07-21 Thread Michael Jung
On Thursday 21 July 2005 14:57, Frank Richter wrote: > On 21.07.2005 10:27, Paul Vriens wrote: > > Hi, > > > > if you mean the 3 rectangles instead of the Minimize/Maximize/Close > > buttons then Yeah I see the same thing. > > Hm, maybe you lack the "Wine Marlett" font (or a Marlett from a Windows)

Re: Buttons in window title bar

2005-07-21 Thread Frank Richter
On 21.07.2005 10:27, Paul Vriens wrote: > Hi, > > if you mean the 3 rectangles instead of the Minimize/Maximize/Close > buttons then Yeah I see the same thing. Hm, maybe you lack the "Wine Marlett" font (or a Marlett from a Windows)? -f.r.

Re: foward declare interfaces in stdole2

2005-07-21 Thread Huw D M Davies
On Thu, Jul 21, 2005 at 12:06:15PM +0530, Vijay Kiran Kamuju wrote: > This fixes the below problem, same problem i faced with msxml > interfaces and forward declarations fixed it. > > ChangeLog > > Forward declare interfaces This isn't what we want anyway, since it changes the or

Re: Run-time error '13'

2005-07-21 Thread Andreas Mohr
Hi, On Thu, Jul 21, 2005 at 07:56:47AM -0300, Savio Ramos wrote: > On Wed, 20 Jul 2005 14:28:19 +0200 > Andreas Mohr <[EMAIL PROTECTED]> wrote: > > > This error message sounds a lot like an OLEAUT32 related error (it's a > > visual > > basic program, I suppose). > > I suppose too... > > > WINE

Re: Run-time error '13'

2005-07-21 Thread Savio Ramos
On Wed, 20 Jul 2005 10:43:35 -0500 Alex Villací­s Lasso <[EMAIL PROTECTED]> wrote: > Can this program be freely downloaded? If so, can you provide a link > (even to a demo version)? It is not free. > Did this program work at all before 0.0.20050628-2? In release 20050524 it works well. > Ev

Re: Run-time error '13'

2005-07-21 Thread Savio Ramos
On Wed, 20 Jul 2005 14:28:19 +0200 Andreas Mohr <[EMAIL PROTECTED]> wrote: > This error message sounds a lot like an OLEAUT32 related error (it's a visual > basic program, I suppose). I suppose too... > WINEDEBUG=+relay,+ole,+variant,+typelib,+typelib2 should be helpful to > identify the problem

Re: Buttons in window title bar

2005-07-21 Thread Paul Vriens
> Hi, > > since this patch > (http://www.winehq.org/hypermail/wine-cvs/2005/07/0168.html) > was applied, the buttons in the window title bars are plain squares on my > system. I'm wondering if I have a problem with my font setup. Do other > people > have this problem (You will only see it in deskto

Buttons in window title bar

2005-07-21 Thread Michael Jung
Hi, since this patch (http://www.winehq.org/hypermail/wine-cvs/2005/07/0168.html) was applied, the buttons in the window title bars are plain squares on my system. I'm wondering if I have a problem with my font setup. Do other people have this problem (You will only see it in desktop mode or in

std* streams in MSVC

2005-07-21 Thread Saulius Krasuckas
I am testing code: | #include | | void main( void ) | { |printf( "The file handle for stdin is %p %d\n", stdin, _fileno( stdin )); |printf( "The file handle for stdout is %p %d\n", stdout, _fileno( stdout )); |printf( "The file handle for stderr is %p %d\n", stderr, _fileno( std