I just ran across an nice description of what the .net framework
1.1 installer uses during its execution:
http://blogs.msdn.com/astebner/archive/2004/08/02/205936.aspx
That's going to be a bit of a challenge.
- Dan
On 6/4/06, James Hawkins <[EMAIL PROTECTED]> wrote:
> Say, does it *do* anything useful yet?
I advised Piotr to send in small-sized patches that implement a
feature at a time. For example, the first patch would just add enough
functionality to create a window, and possibly the menu bar. The ne
On 6/4/06, Dan Kegel <[EMAIL PROTECTED]> wrote:
Hi Piotr!
Say, does it *do* anything useful yet? Might be worth
waiting until it does before submitting it.
- Dan
I advised Piotr to send in small-sized patches that implement a
feature at a time. For example, the first patch would just add en
"Mike Hearn" <[EMAIL PROTECTED]> wrote:
On Fri, 02 Jun 2006 08:01:55 -0700, Dan Kegel wrote:
You can embed a trivial DOS executable as data in the .c file
I'd rather we got out of the habit of doing this seeing as I think git can
deal with binaries better than cvs can.
There is no point in
Hi Piotr!
Say, does it *do* anything useful yet? Might be worth
waiting until it does before submitting it.
- Dan
--
Wine for Windows ISVs: http://kegel.com/wine/isv
Jaap wrote:
The autocad installer indicated that I needed internet explorer 6.0,
so I installed that using winetools.
Don't use winetools, please. As you noticed, it does bad things to
your ~/.wine.
Or, if you do use it, please report problems to the winetools
developer, not here.
(can wine
"Michael Kaufmann" <[EMAIL PROTECTED]> wrote:
The application "Fritz 5.32" calls GetDIBits() with a bitmap that is
still selected in a device context (see bug 3893). The bitmap has a
color table. GetDIBits() creates a memory DC, selects the bitmap into
this DC, and calls GetDIBColorTable(). Bu
> I'd suggest to return and carefully reread the whole paragraph I've
> quoted and replied to. It has nothing to do with a constructive talk
> about commenting the code, instead it's full of insults and hits. I'm
> not even talking about using the word "foreigners" for the contributors
> to the ope
Hi Don.
> I'm a long-time programmer with good (if rusty) knowledge of C/C++ and
> Unix, just getting up to speed on Linux. I'm at the point where I might
> be willing to tackle this myself, if the learning curve isn't too steep.
Great, that you want to help wine.
Did you already got some guida
(notes are at the top of the patch)
I would like some feedback on my stack fix patch
I do not know how it interacts with linux -- no access to a linux box
This has been confirmed to fix numerous app issues (due to stack alignment)
I am starting to think it would be better to have these options
OpenAL 1.1 supports recording... (1.0 does not have recording so that is a
problem yes)
-- My driver handles this atm -- it checks for recording capabilities and
supports accordingly
The OpenAL api is rather simple
- For playback : you make buffers and queue them then poll them (to find out
wh
On 04/06/06, Ivan Gyurdiev <[EMAIL PROTECTED]> wrote:
Well, it seems to store a bit more than that. If I create pshaders A,B,
and vshaders C,D, and do:
set_pixel(A); set_vertex(C);
draw_stuff();
set_pixel(B); set_vertex(D);
draw_stuff();
set_pixel(NULL), set_vertex(NULL)
Won't this create...5 di
Hi,
I'm new to wine, but I have used the wine source in the past as
"unofficial" windows api documentation, to write decompilers etc.
I would like to thank all the developers, I'm very impressed!
I'm trying to install/run autocad 2004, or at least see where possible
problems are. I first uninsta
I still can't fix it, perhaps you could have a deeper look Hans.
From: "EA Durbin" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
CC: wine-devel@winehq.org
Subject: Re: FW: RE: My 1.0 wish list
Date: Sun, 04 Jun 2006 12:49:41 -0500
Why when i edit the code to
On Sun, Jun 04, 2006 at 12:49:41PM -0500, EA Durbin wrote:
>
> Why when i edit the code to change this, does it revert back when i compile
> it?
You need to edit cond.y (bison generates cond.tab.c).
Huw.
+if (wined3d_settings.shader_mode == SHADER_GLSL)
+shader_glsl_add_instruction_modifiers(&hw_arg);
If you choose to pull modifier handling out of the per-opcode function,
this should be done for SHADER_ARB as well, imho.
All of the ARB modifiers are run p
disregard that last stupid question, I looked at the Makefile. Like i said
I'm not a C hacker, had to edit cond.y and not cond.tab.c.
From: "EA Durbin" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
CC: wine-devel@winehq.org
Subject: Re: FW: RE: My 1.0 wish l
Why when i edit the code to change this, does it revert back when i compile
it?
From: "EA Durbin" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
CC: wine-devel@winehq.org
Subject: Re: FW: RE: My 1.0 wish list
Date: Sun, 04 Jun 2006 12:12:18 -0500
I think i mi
Am Samstag, 3. Juni 2006 14:14 schrieb Andrew Neil Ramage:
> After running winecfg and setting winver for DAZStudio.exe to XP, I get
> the following.
You're a user, not a developer I assume? If that's the case, let me tell you
that DAZ|Studio won't work, anyway. Not even if you get beyond the cra
I think i might actually see the problem. Let me test it.
In cond.tab.c the regexes are all wrong for matching the comparison tests.
{ {'~','<','=',0}, COND_IGE },
This should be parsing as
{ {'~','>','=',0}, COND_IGE },
and
{ {'~','<',0}, COND_IGT },
we're matching a less tha
Nice Catch!!!
But unfortunately no, it doesn't fix the problem, the test SELECT * FROM
TABLE WHERE testcondition >= testinteger is still returning the wrong
results.
are we using the case COND_ILE when we compare for greater than or equal to?
Or just when less than or equal to?
or does SE
On 6/4/06, Ivan Gyurdiev <[EMAIL PROTECTED]> wrote:
+/* Declare textures samplers */
+for(i = 0; i < /*This->baseShader.limits.texture */ 4; i++) {
+//if (reg_maps->texcoord & (1 << i))
+shader_addline(buffer,"uniform sampler2D mytex%lu;\n", i);
+}
What's the pro
The application "Fritz 5.32" calls GetDIBits() with a bitmap that is
still selected in a device context (see bug 3893). The bitmap has a
color table. GetDIBits() creates a memory DC, selects the bitmap into
this DC, and calls GetDIBColorTable(). But this fails, because Wine
can't select this bi
On 6/3/06, Phil Costin <[EMAIL PROTECTED]> wrote:
Hi Jason,
Can you just clarify for my why you are changing the D3DVS_VERSION() and
D3DPS_VERSION() to 3.0 for SHADER_ARB in the caps section of directx.c?
Sorry, that snuck in. There are some 2.0 shaders that can be handled
by ARB already, so
Hello,
I have been working to get "Riven" the sequel to Myst to work with the
latest wine from
cvs on the latest FC5. It works and the sound is almost perfect with
OSS, but is totally
screwed up when I use ALSA, I don't know whether this is a WINE or Linux
issue, so I
am cross posting to both lis
James Hawkins wrote:
On 6/3/06, Peter Beutner <[EMAIL PROTECTED]> wrote:
The question is in how far that really works in reality. Even when leaving
such (imho) minor things like K&R or not, spaces after if or not,etc aside.
Just look at the tabs vs. space issue:
I don't really have a problem
MikoĊaj Zalewski wrote:
The number of developers that understand COM aggregation and all the
baroque rules that make it up is very, very low. A simple ops struct of
function pointers as used in the wineserver or kernel would be fine here
... COM adds an awful lot of complexity that really isn'
EA Durbin wrote:
One could just write a perl script to parse the code upon submission
that would convert it from K & R style to a uniform standard that it
easy to read, and fix things like the amount of spaces in an indent.
And thus the discussion comes full circle.
Hans Leidekker wrote:
>
> Don't be sorry. I like your persistence.
And I appreciate your kindness, thank you.
> I see what you mean now, yes address doesn't have to be initialised,
> there's no way it could be used uninitialised in this code.
>
> -Hans
I shall let the dust settle, then probab
On Sunday 04 June 2006 11:45, Andrew Talbot wrote:
> I am sorry to make such a meal of this
Don't be sorry. I like your persistence.
> What I am saying is, because of all the checking code which follows, can we
> be confident that every message->lpRecips[i].lpszAddress must have gained a
> value
>>
>> would it be safe to omit the initialization of "address"?
>
> Yes, but it shortens the lines below and improves readability of
> the code.
>
> -Hans
I am sorry to make such a meal of this, but - in addition to the
write-strings issue - I noticed that the original code initialized
"address
On Sunday 04 June 2006 11:01, EA Durbin wrote:
> It shouldnt matter whether its >= or >, they both return the wrong results
> in the actual msi installer and the right results in db.c.
Does this patch help?
-Hans
diff --git a/dlls/msi/cond.y b/dlls/msi/cond.y
index b32c417..47f858a 100644
---
+/* Declare textures samplers */
+for(i = 0; i < /*This->baseShader.limits.texture */ 4; i++) {
+//if (reg_maps->texcoord & (1 << i))
+shader_addline(buffer,"uniform sampler2D mytex%lu;\n", i);
+}
What's the problem here?
+if (wined3d_settings.sha
On Sunday 04 June 2006 09:08, EA Durbin wrote:
> I wrote a quick test in wine/dlls/msi/tests/db.c to add a 2nd row to the
Could you share it?
> database that was being created, then I inserted the `id` of 8 into it and
> then I ran the query SELECT * FROM phone where `id` > 6, and it returned
>
The reason for using OpenAL is for platforms that dont have
alsa/oss/esd/... support
For one it gives a chance to test audio on windows for example -- and
on mac osx (although the winecoreaudio driver is making great progress).
planning to use OpenAL for portability reasons is a bad idea IMO:
On Sunday 04 June 2006 00:27, Andrew Talbot wrote:
> address = message->lpRecips[i].lpszAddress;
> if (address)
> {
>
> would it be safe to omit the initialization of "address"?
Yes, but it shortens the lines below and improves readability of
the code.
-Hans
One could just write a perl script to parse the code upon submission that
would convert it from K & R style to a uniform standard that it easy to
read, and fix things like the amount of spaces in an indent.
From: Peter Beutner <[EMAIL PROTECTED]>
To: James Hawkins <[EMAIL PROTECTED]>
CC: [EMA
The bug is in file.c under ready_media_for_file() at the query statement.
I hacked the actual wine code and ran some queries aganist actual msi
installer databases. I tested a couple different queries in the actual wine
installer against actual msi databases on a couple different tables to
dia
38 matches
Mail list logo