Chris Robinson wrote:
On Friday 30 March 2007 08:11:54 pm Vitaly Budovski wrote:
Make 8bpp a valid depth in EnumAdapterModes. This allows Age of Empires to
start.
---
dlls/wined3d/directx.c |9 +++--
1 files changed, 7 insertions(+), 2 deletions(-)
This causes the d3d8 devi
On Friday 30 March 2007 08:11:54 pm Vitaly Budovski wrote:
> Make 8bpp a valid depth in EnumAdapterModes. This allows Age of Empires to
> start.
> ---
> dlls/wined3d/directx.c |9 +++--
> 1 files changed, 7 insertions(+), 2 deletions(-)
This causes the d3d8 device test to fail for me:
My first patch!
Sorry this took so long for such a simple patch, I have just been run
off my feet until now.
Before I submit this to wine-patches, is anyone able to do some
further testing for me, to make sure it doesn't break any currently
working games?
This patch fixes a bug that causes a cr
Am Freitag 30 März 2007 22:26 schrieb John Voltz:
> I have a question about the Wine release notes. Do the Wine developers
> work from bugzilla or do they usually just work on a specific
> application feature? Would it require too much extra effort on the
> release notes to associate a specific cha
Further investigations shows the strstr bit is right, but the string I am
comparing with differs from windows. I have fixed up xcopy's output display
to mirror windows, and added that as a patch on the end of the resubmitted
patchset, as it is not directly related to the strstr bit
Regards,
Jason
On Fri, 2007-03-09 at 17:27 +0100, Alexandre Julliard wrote:
> Sorry for the lack of response, I'm currently waiting for our lawyers
> to determine if it's ok to use code based on an oleview dump of a
> native typelib, as that situation is not clear from a copyright
> POV. I'm afraid I can't do mor
I have a question about the Wine release notes. Do the Wine developers
work from bugzilla or do they usually just work on a specific
application feature? Would it require too much extra effort on the
release notes to associate a specific change with a bugzilla bug-fix or
specific application/fe
>wouldn't it be nicer to use sizeof(copyCmd) here?
>if (GetEnvironmentVariable(COPYCMD, copyCmd, MAXSTRING)) {
>There are many spots like this in wcmdmain.c
Yes... I'm blaming cut and paste as I didn't do all the wcmd ones :-)
Once I get all my xcopy patches in I want to continue my rework of th
Er... I have just managed to get git send-email set up and working, and it
would appear to be a feature of it. I do get one question which I answered n
to, perhaps I should anser yes to it and see what happens :-)
Anyone else using git send-email want to comment on how to avoid this?
Thanks!
Jaso
>> +if (wcsstr(copyFromUpper, pos->name) != NULL) {
>wcsstr() doesn't seem the right way to compare file names. You
>probably want to do a wcsicmp() of the end of the name or something
>like that.
It's not a file compare, it's a substring compare, eg if the file contains
just
Hi, while working through the test reports in the appdb, i saw users submitting
crashes with applications , all similar to bug 7380, so i decided to take
it here. The applications that crash are
*WinMerge (newest version)
*BookWorms Adventures + several other PopCap games ( i tested them)
*5
On Thu, Mar 29, 2007 at 03:17:35PM -0700, Sasan Iman wrote:
> I don't know how much effort it would take to get Office
> working on Wine but if getting it to work out-of-the-box means putting
> it on many more systems (leading to more people getting interested, more
> mileage leading to more bug
Hi,
I have a problem with rotated Text displayed by ExtTextOut after
SetMapMode(hdc, MM_ANISOTROPIC);
SetWindowExtEx(hdc, 1000, -1000, NULL);
Basically, giving one negative parameter to SetWindowExtEx should
reverse the direction (clockwise/counterclockwise) in which
rotation is done. It works in
Alexandre Julliard wrote:
Paul Vriens <[EMAIL PROTECTED]> writes:
So if we only have crashes on win9x we don't care. If we can avoid
crashes/failures on win9x (by skip or other means) we don't run them
on win9x. And if they crash on something higher then win9x we disable
them totally.
Does tha
Hi,
Screen resolution setting in DirectX games is still a huge mess. I want to fix
it properly finally. Write tests to find out what really happens in windows,
then implement it.
Unfortunately that fails at the tests already. Our test framework is mainly
limited to test single DLLs, and all tes
Am Freitag 30 März 2007 16:36 schrieb Andrew Riedi:
> Here is the patch, opps, forgot to attach.
>
> On 3/30/07, Andrew Riedi <[EMAIL PROTECTED]> wrote:
> > Here is an updated patch that does not break make test. Sorry about
> > sending in a bad patch, I always saw that regular make would create s
Alexander.Farber at nokia.com wrote:
[I use wine on multiple machines with ~/.wine shared via NFS,
and after a while, the registry is corrupt.]
Well, if it hurts, don't do it :-)
Seriously. NFS is not a good place to put WINEPREFIX.
In my testing, it causes serious performance problems.
And N
2007. március 30. 13.28 dátummal ezt írta:
> "Kovács András" <[EMAIL PROTECTED]> wrote:
> > +LRESULT WINAPI DefRawInputProc( PRAWINPUT *paRawInput, INT nInput, UINT
> > cbSizeHeader ) +{
> > +FIXME("(paRawInput=%p, nInput=%d, cbSizeHeader=%d) stub!\n",
> > *paRawInput, nInput, cbSizeHeader); +
I agree that wine should be able to run office out of the box, but I
also agree with most of the developers' goals, which is to rewrite the
windows api (that is my interpretation, and slimmed down at that). It
is unfortunate that office doesn't work, but in order to make sure the
api is clean and
Thank you all for your replies.
First of all, my conspiracy accusation was meant more as a joke than a
real belief. Being a hardcore engineer myself, albeit not in your
domain, I appreciate the hard work and dedication that goes into these
types of projects.
Second, the explanation about r
You can send the patches as you want/will
Martin J. Schmidt
1007 Bechtel Street
Monaca, Pa. 15061-1733
724-774-6826 0r 724-622-4939
[EMAIL PROTECTED]
- Original Message -
From: "Stefan Dösinger" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>;
Sent: Thursday, March 29, 20
Hi Alexandre,
> From: ext Alexandre Julliard [mailto:[EMAIL PROTECTED]
>
> For the standard registry files you'd have to do it in
> load_init_registry_from_file() and save_branch(). It still won't
> prevent one server from overwriting changes made by others of course.
thanks, you are correct: th
oops!!! you are right.
Thank you.
Juan Lang wrote:
> Hi Byeong-Sik,
>
> +lRet = RegSetValueEx(hKey, valueName, 0, type,
> (LPBYTE)stringValueData, j);
>
> I think that should be j * sizeof(TCHAR), yes?
> --Juan
Hi Byeong-Sik,
+lRet = RegSetValueEx(hKey, valueName, 0, type,
(LPBYTE)stringValueData, j);
I think that should be j * sizeof(TCHAR), yes?
--Juan
Food fight? Enjoy some healthy debate
in the Yaho
<[EMAIL PROTECTED]> writes:
> I've tried adding file locking using fcntl() (which should
> work over NFS too) by modifiyng load_registry() and
> save_registry() as in the attached diff, but unfortunately
> it doesn't help.
For the standard registry files you'd have to do it in
load_init_registry
Hello Wine developers,
we try to use Wine in clustered environment with multiple
Wine processes being started simultaneously on 8 to 80 Linux
machines by a modified GNU make. The source code being built
is located on an NFS mount visible by all cluster machines.
Unfortunately Wine fails after
Am Freitag, 30. März 2007 schrieb Eric Pouech:
> 2007/3/29, Dennis Schridde <[EMAIL PROTECTED]>:
> > Am Donnerstag, 29. März 2007 schrieb Eric Pouech:
> > > Dennis Schridde a écrit :
> > > > Hello Wine users!
> > > >
> > > > I've got a minidump from a ("real") Windows user of our game and
> > > > w
On 30.03.2007 09:14, Alexandre Julliard wrote:
> Stefan Dösinger <[EMAIL PROTECTED]> writes:
>
>> Shouldn't then the wine code do a version check too and behave differently
>> if
>> the winver is set to win98?
>
> Only if there is an app that does the same version check and depends
> on both be
Hello,
wouldn't it be nicer to use sizeof(copyCmd) here?
if (GetEnvironmentVariable(COPYCMD, copyCmd, MAXSTRING)) {
There are many spots like this in wcmdmain.c
Regards
Alex
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of ext Alexandre
Julliard
2007/3/29, Dennis Schridde <[EMAIL PROTECTED]>:
Am Donnerstag, 29. März 2007 schrieb Eric Pouech:
> Dennis Schridde a écrit :
> > Hello Wine users!
> >
> > I've got a minidump from a ("real") Windows user of our game and would
> > like to extract information from it using winedbg.
> >
> >
> > Th
"Kovács András" <[EMAIL PROTECTED]> wrote:
+LRESULT WINAPI DefRawInputProc( PRAWINPUT *paRawInput, INT nInput, UINT
cbSizeHeader )
+{
+FIXME("(paRawInput=%p, nInput=%d, cbSizeHeader=%d) stub!\n", *paRawInput,
nInput, cbSizeHeader);
+
+return S_OK;
+}
Although MSDN documents that on s
Felix Nawothnig <[EMAIL PROTECTED]> writes:
> Please tell me if this still fails on your box (both versions pass on mine).
Now it succeeds where it shouldn't...
../../../tools/runtest -q -P wine -M gdi32.dll -T ../../.. -p gdi32_test.exe.so
font.c && touch font.ok
font.c:541: Tests skipped: Sym
Huw Davies <[EMAIL PROTECTED]> writes:
> --- a/dlls/winex11.drv/xrender.c
> +++ b/dlls/winex11.drv/xrender.c
> @@ -596,7 +596,6 @@ void X11DRV_XRender_UpdateDrawable(X11DRV_PDEVICE
> *physDev)
> if(physDev->xrender->pict)
> {
> TRACE("freeing pict = %lx dc = %p\n", physDev->xre
Jason Edmeades <[EMAIL PROTECTED]> writes:
> +/* Loop through testing each exclude line */
> +while (pos) {
> +if (wcsstr(copyFromUpper, pos->name) != NULL) {
> +WINE_TRACE("Skipping file as matches exclude '%s'\n",
> +
34 matches
Mail list logo