Found a sample with source code of the broken character models/misplaced vertices

2006-07-31 Thread Jason Green
The SkinnedMesh sample from the dx8.1 sdk is broken in shader mode, but you have to change the caps to get anything to show up. In directx.c, I set MaxVertexBlendMatrices to 4 and MaxVertexBlendMatrixIndex to 0 (to match to caps of my machine in Windows), then launched the sample and switched to

Name problems with HTMLDocument, InternetExplorer and WebBrowser

2006-07-31 Thread Dan Hipschman
Hi all, I'd like to submit a patch which makes widl output forward declarations to the header file for coclass definitions. Currently this is done only if the coclass has its own forward declaration. For example, [ uuid(...) ] coclass Foo; [ uuid(...) ] coclass Bar { ... }; Foo will get dec

Re: Tower of Goo regression (ddraw rewrite)

2006-07-31 Thread Michael [Plouj] Ploujnikov
Works fine in 0.9.18 here.

Re: Tower of Goo regression (ddraw rewrite)

2006-07-31 Thread Jesse Allen
On 7/31/06, Joseph Garvin <[EMAIL PROTECTED]> wrote: The last version of wine I tried this game with was before the ddraw rewrite and it looked fine then. When you drag goo upwards, a text message appears telling you how many meters high your tower is -- this is now drawn upside down. You can ge

Tower of Goo regression (ddraw rewrite)

2006-07-31 Thread Joseph Garvin
The last version of wine I tried this game with was before the ddraw rewrite and it looked fine then. When you drag goo upwards, a text message appears telling you how many meters high your tower is -- this is now drawn upside down. You can get tower of goo for free here: http://www.experimentalg

Re: Implement SetThreadPriority

2006-07-31 Thread Detlef Riekenberg
Chris Robinson wrote: > +// Use the minimum real-time priority possible for now (on Linux, > 1 for > +// SCHED_FIFO and 0 for SCHED_OTHER) I did not test the Patch, but C++ - Comments are not allowed in wine (not compatible with all compilers) It seems to be an updated Patch from Mike. I

Re: please help with patch submission

2006-07-31 Thread Neil Skrypuch
Clearly it was too early for me when I wrote that. I had counted the GUID length wrong (as 39 instead of 38), so the - 3 didn't make sense either. - Neil

Re: [FreeBSD] locating wine at 0x20000000

2006-07-31 Thread Tijl Coosemans
On Monday 31 July 2006 16:22, Alexandre Julliard wrote: > Tijl Coosemans <[EMAIL PROTECTED]> writes: > > So I was thinking of moving Wine to 0x2000. That would be the > > easiest solution by far, but, are there any potential problems with > > that? > > Yes, that's too low, apps can expect that

windowd threads and winelib

2006-07-31 Thread Johannes Holzer
Hi I want to compile a windows application with winelib. The application uses threads (_beginthreadNT with bcc, _beginthreadex with gcc/mingw). The necessary Headerfile "process.h" is in /usr/include/wine/msvcrt. I learned, the the glibc-Library is incompatible with MS-Threads. Now - which

Re: usp10: Remove a test that fails on Windows.

2006-07-31 Thread Hans Leidekker
On Monday 31 July 2006 13:20, Jeff Latimer wrote: > times out of 20 on my 32 bit system. Obviously there is an > inconsisency. Is there any advice on how to achieve the aim of the test? Hmm, this just a guess, but I see you're running the first test (test_ScriptItemIzeShapePlace) with an HDC t

Re: please help with patch submission

2006-07-31 Thread Damjan Jovanovic
--- Neil Skrypuch <[EMAIL PROTECTED]> wrote: > On Monday, July 31, 2006 06:37, Damjan Jovanovic > wrote: > > +WCHAR > guidStringWithBraces[MAX_GUID_STRING_LEN]; > > You need MAX_GUID_STRING_LEN + 1 to store the null > too, if I'm not mistaken. 0 1 2 3 01234567890123

Re: [FreeBSD] locating wine at 0x20000000

2006-07-31 Thread Alexandre Julliard
Tijl Coosemans <[EMAIL PROTECTED]> writes: > So I was thinking of moving Wine to 0x2000. That would be the > easiest solution by far, but, are there any potential problems with > that? Yes, that's too low, apps can expect that address to be free. If you can't change the 512Mb thing then you

[FreeBSD] locating wine at 0x20000000

2006-07-31 Thread Tijl Coosemans
Hello all, For the past week or so I've been getting to know Wine and trying to improve/fix the FreeBSD version. I've progressed somewhat since then, though there are still quite a few open issues. One of the problems on FreeBSD is that Wine is loaded at 0x7bf0. FreeBSD's mmap preserves so

Re: please help with patch submission

2006-07-31 Thread Neil Skrypuch
On Monday, July 31, 2006 06:37, Damjan Jovanovic wrote: > +    WCHAR guidStringWithBraces[MAX_GUID_STRING_LEN]; You need MAX_GUID_STRING_LEN + 1 to store the null too, if I'm not mistaken. > +CopyMemory(&guidStringWithBraces[1], lpGuidString, > +(MAX_GUID_STRING_LEN - 3) * sizeof(WCHA

Re: wine_main_preload_info not found, cannot use first megabyte, *.exe don't work

2006-07-31 Thread David D. Hagood
I've been posting my findings on this very matter to wine-users - look for "cannot run under Fedora 6 tset 1". I have also found that, if you are running in an SELinux system, you cannot directly run a Windows program using binfmt_misc - the program must have the same security context labels s

Re: usp10: Remove a test that fails on Windows.

2006-07-31 Thread Jeff Latimer
Hans, the test does fail on windows but that is becuase it is checking gylphs that are different between the windows and wine (ie. while the unicode is the same the gylphs are  different).  I don't know how to overcome that issue.  What is it is supposed to do is check that there is a consisten

Re: shdocvw: Added type library.

2006-07-31 Thread Jacek Caban
Alexandre Julliard wrote: Jacek Caban <[EMAIL PROTECTED]> writes: diff --git a/dlls/shdocvw/shdocvw.idl b/dlls/shdocvw/shdocvw.idl new file mode 100644 index 000..45b9111 --- /dev/null +++ b/dlls/shdocvw/shdocvw.idl You can't name the file shdocvw.idl, otherwise make will try to r

please help with patch submission

2006-07-31 Thread Damjan Jovanovic
Hi I have a short patch that fixes serious bugs I've encountered in setupapi's SetupDiOpenClassRegKeyExW(). It's been mailed twice to wine-patches and is attached for reference. Is there anything wrong with it? Please comment. Thank you Damjan __

Re: shdocvw: Added type library.

2006-07-31 Thread Alexandre Julliard
Jacek Caban <[EMAIL PROTECTED]> writes: > diff --git a/dlls/shdocvw/shdocvw.idl b/dlls/shdocvw/shdocvw.idl > new file mode 100644 > index 000..45b9111 > --- /dev/null > +++ b/dlls/shdocvw/shdocvw.idl You can't name the file shdocvw.idl, otherwise make will try to rebuild the existing shdocvw.

Re: advapi32: add more helper functions

2006-07-31 Thread Alexandre Julliard
Robert Reif <[EMAIL PROTECTED]> writes: > / > + *ADVAPI_GetComputerNameW > + * > + * Gets the local computer name. > + */ > +LPCWSTR ADVAPI_GetComputerNameW() > +{ > +static WCHAR buf[MAX_COMPUTERNAME_LENGTH + 1]; > +