Re: D3D9: Rework the converted vertex declaration management

2007-04-15 Thread H. Verbeet
On 16/04/07, Stefan Dösinger <[EMAIL PROTECTED]> wrote: I have hope that this fixes the converted decl issues finally(appart of sorting the array, which will be another patch) +convertedDecls = HeapAlloc(GetProcessHeap(), 0, sizeof(IDirect3DVertexDeclaration9 *) * (This->numConvertedDecl

Re: quartz: Partially implement the MPEG 1 Stream Splitter filter

2007-04-15 Thread Chris Robinson
On Sunday 15 April 2007 08:33:12 pm you wrote: > You need to take WORDS_BIGENDIAN macro into account, not blindly assume > that we are running on a LE machine. Something like (as done in other > DLLs): > > #ifdef WORDS_BIGENDIAN > #define GET_BE_WORD(x) (x) > #define GET_BE_DWORD(x) (x) > #else > #

Re: quartz: Partially implement the MPEG 1 Stream Splitter filter

2007-04-15 Thread Dmitry Timoshkov
Chris Robinson <[EMAIL PROTECTED]> wrote: +static inline void flip_dword(DWORD *pVal) +{ +DWORD val = *pVal; +val = (val>>24) | ((val>>8)&0xFF00) | + ((val&0xFF00)<<8) | (val<<24); +*pVal = val; +} + +static inline void flip_word(WORD *pVal) +{ +WORD val = *pVal; +va

Re: FAQ moved to Wiki

2007-04-15 Thread Jan Zerebecki
On Sun, Apr 15, 2007 at 09:33:41PM -0400, Dimi Paun wrote: > On Sun, 2007-04-15 at 15:52 -0700, Scott Ritchie wrote: > > I've pasted the content from the FAQ onto the wiki here: > I really don't think this is a good idea: > * it's going to be less usable on the Wiki AFAIK > * we'll lose the

Re: locales, unicode and ansi with msvcrt (bug 8022)

2007-04-15 Thread Dmitry Timoshkov
"Ann & Jason Edmeades" <[EMAIL PROTECTED]> wrote: My current plan, unless you have strong objections, is to make the wprintf msvcrt routines use WideCharToMultiByte on the string into the GetACP codepage before being written out, and add file tests for this into the msvcrt testsuite You should

Re: FAQ moved to Wiki

2007-04-15 Thread Dimi Paun
On Sun, 2007-04-15 at 15:52 -0700, Scott Ritchie wrote: > I've pasted the content from the FAQ onto the wiki here: > http://wiki.winehq.org/FAQ I really don't think this is a good idea: * it's going to be less usable on the Wiki AFAIK * it's going to be fairly hard to edit since it is so big

Re: Old versions of Acrobat Pro tryout?

2007-04-15 Thread Dan Kegel
On 4/15/07, Dan Kegel <[EMAIL PROTECTED]> wrote: Hey Tom, thanks for the help finding old Photoshops. I'm now looking for old Acrobat Pro trials. Best source I've found so far is for the foreign language versions, http://www.winsoft.eu/support/adobe-download.php but I don't speak any of those lan

Re: Solution to 0.9.35 fonts problem

2007-04-15 Thread Vitaliy Margolen
Scott Ritchie wrote: > On Sat, 2007-04-14 at 13:08 -0600, Vitaliy Margolen wrote: >> I'm getting number of reports on #winehq as well as in bugzilla about >> new Ubuntu packages for 0.9.35 having problems with displaying text and >> mouse cursor. It appears there were some problems with xrandr duri

Solution to 0.9.35 fonts problem (was: Re: Ubuntu packages for wine-0.9.35 are broken)

2007-04-15 Thread Scott Ritchie
On Sat, 2007-04-14 at 13:08 -0600, Vitaliy Margolen wrote: > I'm getting number of reports on #winehq as well as in bugzilla about > new Ubuntu packages for 0.9.35 having problems with displaying text and > mouse cursor. It appears there were some problems with xrandr during > compiling them. > >

Re: Ubuntu packages for wine-0.9.35 are broken

2007-04-15 Thread Nick Law
Nick Law wrote: Scott Ritchie wrote: On Sat, 2007-04-14 at 13:08 -0600, Vitaliy Margolen wrote: I'm getting number of reports on #winehq as well as in bugzilla about new Ubuntu packages for 0.9.35 having problems with displaying text and mouse cursor. It appears there were some problems with

Re: secur32: invert error handling conditions in order to decrease indentation in secur32/wrapper.c.

2007-04-15 Thread Kai Blin
On Saturday 14 April 2007 00:56, Yuval Fledel wrote: > - the patch is a no-op. While I like to do the same to functions I work on, is there any reason you need to change this for wrapper.c? It hasn't been changed for quite a while and seems feature complete. Kai -- Kai Blin, WorldForge deve

RE: locales, unicode and ansi with msvcrt (bug 8022)

2007-04-15 Thread Ann & Jason Edmeades
>My current plan, unless you have strong objections, is to make the wprintf >msvcrt routines use WideCharToMultiByte on the string into the GetACP >codepage before being written out, and add file tests for this into the >msvcrt testsuite OK, A bit more testing and a bit more research starts to hel

RE: locales, unicode and ansi with msvcrt (bug 8022)

2007-04-15 Thread Ann & Jason Edmeades
>> Anything else I can test, or am I ok to put file tests into msvcrt test >> buckets and allow the msvcrt unicode printf and friends to convert to >> non-unicode using the console codepage before being output to the file >> handle? >Why don't you simply run native MSVCRT under +relay,+snoop and s

Re: secur32: invert error handling conditions in order to decrease indentation in secur32/wrapper.c.

2007-04-15 Thread Detlef Riekenberg
On Sa, 2007-04-14 at 01:56 +0300, Yuval Fledel wrote: > wrapper.c | 1252 > ++ > 1 file changed, 545 insertions(+), 707 deletions(-) I have no Idea about the code in secur32.dll, but your Patch is much to large. I suggest to modify only

Re: Mandriva rpms

2007-04-15 Thread Anssi Hannula
marco wrote: > Ivan Leo Puoti has not much time lately to make the rpms for mandriva. > So I volunteered to make them. > > So I made a rpm from the latest rpm. > > How do I get this rpm on the winehq download server ? Note that latest Wine RPMS for Mandriva 2007.0 are also available in the off

Re: Recommendation for configure.ac fix

2007-04-15 Thread Marcus Meissner
On Sun, Apr 15, 2007 at 03:42:02PM +, [EMAIL PROTECTED] wrote: > > I've just started hacking on wine. > > I've found a case of Solaris supporting the getaddrinfo function call that is > tested in configure (via configure.ac) but I need to add specific libraries > to > the test. However,

Re: Implementation of mathematical functions for D3DRM

2007-04-15 Thread James Hawkins
On 4/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Here is the complete implementation of the mathematical functions of D3DRM with tests. Tests work under Windows XP and wine. One patch per email please. -- James Hawkins

Compiling quartzdrv

2007-04-15 Thread Jaka Jančar
Hi, I'm trying to compile quartzdrv, just to check it out and test it a bit. I have tried following the instructions at: http://wiki.winehq.org/MacOSX/QuartzDriver There's a bit of ambiguity at the next line: $ cp -r ~/drivers/dlls/quartzdrv ~/wine/dlls/winequartz.drv I assume this was

Mandriva rpms

2007-04-15 Thread marco
Ivan Leo Puoti has not much time lately to make the rpms for mandriva. So I volunteered to make them. So I made a rpm from the latest rpm. How do I get this rpm on the winehq download server ? Kind regards, Marco Meijer

dinput: fix mouse jitter in Halo (bug 7640)

2007-04-15 Thread Martin Traverse
Hello, I have done a bisection on bug #7640, mouse jitter in Halo which rendered the game unplayable. I have a patch which fixes the problem on my Gentoo system against wine-0.9.35. Bug is introduced by commit b22ff8018aca7c365e505f1db7732f7050ae259b dinput: Remove MsgWaitForMultipleObjects cal

Recommendation for configure.ac fix

2007-04-15 Thread sol11x86
I've just started hacking on wine. I've found a case of Solaris supporting the getaddrinfo function call that is tested in configure (via configure.ac) but I need to add specific libraries to the test. However, I don't think it's a good idea to overload the LIBS variable for all the functions

Old versions of Acrobat Pro tryout?

2007-04-15 Thread Dan Kegel
Hey Tom, thanks for the help finding old Photoshops. I'm now looking for old Acrobat Pro trials. Best source I've found so far is for the foreign language versions, http://www.winsoft.eu/support/adobe-download.php but I don't speak any of those languages. FIleplanet doesn't seem to have any, and

KDevelop configure error or winebug

2007-04-15 Thread marcel busse
hi i can't debug with winedbg. it steps until end cause of no line debug info. at the start of the debugging process there is a fixme - it says something about dwarf-2 information. My config: i started a hello world with kdevelop and took as c++ compiler wineg++. that's all. __

Re: Towards getting the top ten requested apps running...

2007-04-15 Thread SorinN
BTW - Dreamweaver8, Flash8, Fireworks8 work for me very well with Wine. Some (non fundamental ) glitches that needs workarounds still exists ( I can't install Adobe apps but I copy folders and registry files and it works ) . On my vision until Adobe will create native Linux applications - Wine is

Re: GetDIBits(): Handle Bitfields properly

2007-04-15 Thread Dmitry Timoshkov
"Michael Kaufmann" <[EMAIL PROTECTED]> wrote: Do you have any information about the 15 bpp case? Are some applications using this value? According to MSDN, it is not allowed. 15 bpp case should be similar to a 16-bit one but with different masks. -- Dmitry.

Re: Towards getting the top ten requested apps running...

2007-04-15 Thread Kai Blin
On Saturday 14 April 2007 08:47, Dan Kegel wrote: > Novell did a survey last year to find out what ten apps > people most wanted ported to Linux. I've put a copy > of the results into our wiki here: > http://wiki.winehq.org/LinuxApplicatonRequestSurvey > > Wine seems far enough along that it's n

Re: RegDeleteTree

2007-04-15 Thread Detlef Riekenberg
On So, 2007-04-15 at 10:02 +0200, Stefan Leichter wrote: I did not test the code, but ... > +LONG WINAPI RegDeleteTreeW(HKEY hKey, LPCWSTR lpszSubKey) > +{ > +if (!ret) > + ret = RegSetValueA(hSubKey, NULL, REG_SZ, "", 0); Please do not call an ANSI-Function in an UNI

Re: GetDIBits(): Handle Bitfields properly

2007-04-15 Thread Michael Kaufmann
+if (bpp > 0 && compr == BI_BITFIELDS) +{ +/* Windows ignores the input bitfields and overwrites them */ + +if (bpp == 16) +{ +/* With these bitfields, the color data is the same as for BI_RGB */ +((PDWORD)info->bmiColors)[0] = 0x7c00; +

Re: Ubuntu packages for wine-0.9.35 are broken

2007-04-15 Thread Nick Law
Scott Ritchie wrote: On Sat, 2007-04-14 at 13:08 -0600, Vitaliy Margolen wrote: I'm getting number of reports on #winehq as well as in bugzilla about new Ubuntu packages for 0.9.35 having problems with displaying text and mouse cursor. It appears there were some problems with xrandr during co