On 6/16/06, Mike McCormack <[EMAIL PROTECTED]> wrote:
Nick Cronin wrote:
> unlike http:// etc, file:/// has 3 slashes, this patch removes the third
> slash.
Could you provide a test case for this please?
Specifically, is "http:///foo.bar"; different to "http://foo.bar";? Your
code treats them
Nick Cronin wrote:
unlike http:// etc, file:/// has 3 slashes, this patch removes the third
slash.
Could you provide a test case for this please?
Specifically, is "http:///foo.bar"; different to "http://foo.bar";? Your
code treats them equally. How about "file:///" and "file://"?
Mike
<[EMAIL PROTECTED]> wrote:
+ok (CreateProcess(NULL, "notepad.exe", NULL, NULL, FALSE, 0, NULL, NULL,
+ &si, &pi),
+"CreateProcess error=%ld\n", GetLastError());
+
+while (elapsed < timeout)
+{
+Sleep(50);
+elapsed += 50;
+
+hNotepa
Hi David Anderson:
> AMD_64 cpu, Kubuntu 6.06 (Dapper Drake), on HP laptop.
> I finally got around to finishing a build, with current cvs sources.
> Hope this is of some interest.
Thanks for your Hints. I added them to the Wiki:
http://wiki.winehq.org/WineOn64bit
If you have updates, or a Li
Jason Green wrote:
- The LOOP register is an extended register and wasn't being checked
for in the current code. This moves the check up a level and checks
against the instruction code which is more efficient anyway.
It's important to also correct the reason why it wasn't being detected
where i
15. June 2006:
--- quote ---
Microsoft Corp. today announced that effective July 2008 Bill Gates,
chairman, will transition out of a day-to-day role in the company
--- quote ---
http://www.microsoft.com/presspass/press/2006/jun06/06-15CorpNewsPR.mspx
Just for info.
--
By By ...
... D
On Friday 16 June 2006 13:06, Eric Pouech wrote:
> 2006/6/16, Raphael <[EMAIL PROTECTED]>:
> > Hi,
> >
> > Changelog:
> > - map lines section
> > - better robustness
> > - support of unamed syms
> > - better traces
> > - ref hash table to stabilize model
> >
> > TODO:
> > - find a clean
Paul Davis <[EMAIL PROTECTED]> writes:
> seg fault is in wine-pthread, not wine-preloader, which is even tougher
> - two exec boundaries to cross.
You don't need the execs, you can simply run wine-pthread directly
(unless the problem is only triggered by the preloader of course).
--
Alexandre J
Paul Davis wrote:
seg fault is in wine-pthread, not wine-preloader, which is even tougher
- two exec boundaries to cross.
Hi Paul,
did you try to do something along those lines?
- insert a long loop in wine-pthread code before the crash to wait for,
say, 30 seconds
- after starting
On Wed, 2006-06-14 at 21:21 -0700, David Anderson wrote:
> AMD_64 cpu, Kubuntu 6.06 (Dapper Drake), on HP laptop.
>
> I finally got around to finishing a build, with current cvs sources.
> First one must install the necessary libraries: Finding the correct
> set may take a few minutes and severa
seg fault is in wine-pthread, not wine-preloader, which is even tougher
- two exec boundaries to cross.
i am building ardour (http://ardour.org) as a win32 executable to allow
us to continue using win32 DLL's as plugins.
when i run the result with wine, i get a segfault long before control
has been transferred to my code. it appears to be in wine-preloader
(based on what "file core." says).
i c
On Fri, 16 Jun 2006 11:52:37 -0400, Steven Edwards wrote:
> Like the parent said, some installers don't ship with it, they expect
> the OS to have it. Office 2007 only runs on XP and higher and it
> expects the dll to already be there.
So we find some free application that contains it and install
Is there anything wrong with my patches?
On 6/16/06, Mike Hearn <[EMAIL PROTECTED]> wrote:
Why? GDI+ is distributed with applications, so we can put off implementing
it for some time yet. Using Monos GDI+ means using the Windows build of
Cairo too; definitely a good idea IMHO as GDI+ is somewhat nontrivial and
the code has already been
I'd commit it, but I'd rather hear from Dimi first.
Dimi, FYI in about a month or so we are going to upgrade the WineHQ
server. The old server is running out of disk space fast. Part of the
reason I didn't want to host a Wiki before. With plenty of HDD that
issue is gone. We are also moving the se
On Fri, 16 Jun 2006 18:24:34 +0900, Dmitry Timoshkov wrote:
> Hello,
>
> this patch works for me with Internet Explorer and Diablo II demo.
I think for full IE support we need more; if you start IE, set it to
fullscreen then quit and restart it the window will now be created
unmanaged. Or at leas
On Fri, 16 Jun 2006 03:56:04 -0400, Steven Edwards wrote:
> What do you mean? I looked at this before and even if we are to use
> libgdiplus we need some way to wrap it in a way the Windows app
> expects.
Why? GDI+ is distributed with applications, so we can put off implementing
it for some time y
On Fri, 16 Jun 2006 08:54:04 -0400, Ulrich Czekalla wrote:
> That's why I like the idea of using COM. All the infrastructure is already
> there. For now we can implement the trash shell object inside shell32 and
> if someone wants to write a OS/X version all they need to do is override a
> registry
Hi,
The libgdiplus for mono is implementing things quite differently.
I think its only working with mono.
We need to modify our wine code so that it works with mono. (You must
really ask Julliard for this) or modify libgdiplus of mono to work
with wine.
What I am saying is why re-invent the wheel
Dmitry Timoshkov wrote:
> "Andrew Talbot" <[EMAIL PROTECTED]> wrote:
>
>> It seems better to represent international characters with escape
>> sequences, both to increase clarity - especially for those who do not
>> normally use ISO-8859-1 encoding - and to make editing easier for some.
>
> Plea
* On Fri, 16 Jun 2006, Mike McCormack wrote:
> * Saulius Krasuckas wrote:
> >
> > Well, next example hasn't forced us to wait long for it. It's
> > Direct3DShaderValidatorCreate9!d3d9 :
(I'm sorry for swapping both parts of a function name each with other;)
> Do you really need to look at asse
"Andrew Talbot" <[EMAIL PROTECTED]> wrote:
It seems better to represent international characters with escape sequences,
both to increase clarity - especially for those who do not normally use
ISO-8859-1 encoding - and to make editing easier for some.
Please don't do that. Anyone who wants to e
Paul Vriens <[EMAIL PROTECTED]> writes:
> On Fri, 2006-06-16 at 15:25 +0200, Alexandre Julliard wrote:
>> This won't work right if theming is disabled, since IsAppThemed
>> returns FALSE in that case. Also note that GetLastError doesn't return
>> an HRESULT, so ERROR_SUCCESS is a better name than
On Fri, 2006-06-16 at 15:25 +0200, Alexandre Julliard wrote:
> Paul Vriens <[EMAIL PROTECTED]> writes:
>
> > +SetLastError(0xdeadbeef);
> > +bAppThemed = pIsAppThemed();
> > +todo_wine
> > +{
> > +ok( bAppThemed == FALSE, "Expected FALSE as this test executable
> > is not
Paul Vriens <[EMAIL PROTECTED]> writes:
> +SetLastError(0xdeadbeef);
> +bAppThemed = pIsAppThemed();
> +todo_wine
> +{
> +ok( bAppThemed == FALSE, "Expected FALSE as this test executable is
> not (yet) themed.\n");
> +ok( GetLastError() == S_OK,
> +"Exp
"Mike Hearn" <[EMAIL PROTECTED]> writes:
> On 6/15/06, Alexandre Julliard <[EMAIL PROTECTED]> wrote:
>> No, we only want the internal functions to be hidden.
>
> Right, so we set default visibility to hidden then change WINAPI and
> WINAPIV to include __attribute__((visibility(default))). That way
On 6/16/06, Robert Shearman <[EMAIL PROTECTED]> wrote:
It's a little harder than that. I experimented with doing this before
and it is necessary to apply that same attribute to all of the functions
exported from libwine and libunicode.
We're already forcing all exported symbols in those librari
On Thu, Jun 15, 2006 at 11:26:02AM +0100, Robert Shearman wrote:
> I don't think it is. I think it would be better to start off with by
> just doing the shell integration in shell32. If a framework like this is
> needed, then it will become obvious later on.
>
That's why I like the idea of using
Mike Hearn wrote:
On 6/15/06, Alexandre Julliard <[EMAIL PROTECTED]> wrote:
No, we only want the internal functions to be hidden.
Right, so we set default visibility to hidden then change WINAPI and
WINAPIV to include __attribute__((visibility(default))). That way only
WINAPI declarations a
Friday, June 16, 2006, 1:04:52 AM, Andreas Bierfert wrote:
> On Wed, 14 Jun 2006 13:36:03 +0100
> Mike Hearn <[EMAIL PROTECTED]> wrote:
>> I think a meta package called "wine" that installed everything would be
>> much better because that would do what end users would intuitively expect.
>> And Win
On 6/15/06, Alexandre Julliard <[EMAIL PROTECTED]> wrote:
No, we only want the internal functions to be hidden.
Right, so we set default visibility to hidden then change WINAPI and
WINAPIV to include __attribute__((visibility(default))). That way only
WINAPI declarations are exported.
thanks -
Saulius Krasuckas wrote:
Well, next example hasn't forced us to wait long for it.
It's Direct3DShaderValidatorCreate9!d3d9 :
Do you really need to look at assembly to figure out that you can just
return FALSE/0/NULL and make the program or dll that's calling this
function happy?
If that
* On Thu, 15 Jun 2006, Jacek Caban wrote:
> * Mike Hearn wrote:
> > * On 6/14/06, Jacek Caban <[EMAIL PROTECTED]> wrote:
> > > I'd really like to use Linux Gecko, but it's impossible because
> > > we'd need XEmbed embedder support that's impossible to implement in
> > > Wine (perhaps if we added
"Saulius Krasuckas" <[EMAIL PROTECTED]> wrote:
Well, next example hasn't forced us to wait long for it.
It's Direct3DShaderValidatorCreate9!d3d9 :
[3] http://www.winehq.org/pipermail/wine-patches/2006-June/027601.html
Just replied to that e-mail. So that one doesn't count either.
My guess i
"Louis. Lenders" <[EMAIL PROTECTED]> wrote:
It's not really possible to test this function on windows , but
i think this is quite a good guess for the function's prototype.
I've tested with quite some samples from www.codesampler.com. Other
implementations make the samples crash .
(http://w
* On Tue, 13 Jun 2006, Dmitry Timoshkov wrote:
> * "Saulius Krasuckas" <[EMAIL PROTECTED]> wrote:
> > * On Mon, 12 Jun 2006, Mike McCormack wrote:
> > > * Saulius Krasuckas wrote:
> > > >
> > > > And what if interface is blackboxed?
> > >
> > > I don't know what a "blackboxed interface" is. If y
Robert Shearman wrote:
Francois Gouget wrote:
Changelog:
* dlls/ole32/stg_stream.c
Aric Stewart <[EMAIL PROTECTED]>
Remove an assert and instead just fail.
This allows iTunes to finish installing with the reboot.
A better fix would be to check the result of IStream_SetSize in t
Francois Gouget wrote:
Changelog:
* dlls/ole32/stg_stream.c
Aric Stewart <[EMAIL PROTECTED]>
Remove an assert and instead just fail.
This allows iTunes to finish installing with the reboot.
A better fix would be to check the result of IStream_SetSize in this
function, although I
2006/6/16, Raphael <[EMAIL PROTECTED]>:
Hi,Changelog: - map lines section - better robustness - support of unamed syms - better traces
- ref hash table to stabilize modelTODO: - find a clean way to handle forward declarations (some assertions canhappen) - debug lines parsing
I did (in pa
[EMAIL PROTECTED] wrote:
It looks like someone was implementing some stuff and left it half way
through,
That was me. I didn't have any documentation on how the extensions
processing was meant to work.
so the result is GetClassMediaFile was hard coded to fail
because process_extensions al
Le vendredi 16 juin 2006 à 11:37 +0200, Mario Demontis a écrit :
> In http://www.winehq.com/pipermail/wine-devel/2006-June/048583.html
> I read that the patch is Diffed against
> 1d40bf0141b7f67b1188555962698f5dab631bc3
> What does it mean? How can I get my cvs directory to that state?
>
> Thanks
Mario Demontis wrote:
I read that the patch is Diffed against
1d40bf0141b7f67b1188555962698f5dab631bc3
What does it mean? How can I get my cvs directory to that state?
http://wiki.winehq.org/GitWine
Mike
In http://www.winehq.com/pipermail/wine-devel/2006-June/048583.html
I read that the patch is Diffed against
1d40bf0141b7f67b1188555962698f5dab631bc3
What does it mean? How can I get my cvs directory to that state?
Thanks
Mario
On gio, 2006-06-15 at 20:48 -0600, Vitaliy Margolen wrote:
> Thursday,
On Thursday 15 June 2006 20:03, James Hawkins wrote:
> Hi,
>
> I'm getting this compile failure as of today:
>
> make[2]: Entering directory `/home/jhawkins/wine/dlls/wined3d'
> gcc -c -I. -I. -I../../include -I../../include -I/usr/X11R6/include
> -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-
Hi,
On 6/15/06, Vijay Kiran Kamuju <[EMAIL PROTECTED]> wrote:
I think we rather use mono project's libgdiplus(gdiplus.dll
implementation) than a stub implementation.
This will help in later implementing the .Net Compatibility Layer to Wine.
What do you mean? I looked at this before and even if
On Wed, 14 Jun 2006 13:36:03 +0100
Mike Hearn <[EMAIL PROTECTED]> wrote:
> Well, that would be an improvement but people tend to just guess
> at what they need to type for programs like yum/apt. It's one of the
> problems they have. Does "yum install epiphany" install a web browser or a
> card game
47 matches
Mail list logo