Re: What would most aid WINE development?

2005-11-17 Thread Tom Wickline
On 11/17/05, Susheel Daswani <[EMAIL PROTECTED]> wrote: > > I plan to use your answers for no other purpose than educating my > professor on what, alas, *could* have been done to help restore > competition to the personal desktop OS market. > Hello, The only real remedy to the Microsoft Monopoly

Re: What would most aid WINE development?

2005-11-17 Thread Susheel Daswani
Juan & Dmitry, Thanks for your answers. Highly interesting. So, the extra APIs that MS had to document under the consent decree (all 290 of them) don't come close to completing the whole picture? It sounds like you have to fumble around in the dark. With regards to what Dmitry mentioned, it seem

Re: What would most aid WINE development?

2005-11-17 Thread Dmitry Timoshkov
"Susheel Daswani" <[EMAIL PROTECTED]> wrote: > So my question for the WINE developers is "What materials from > Microsoft would most aid the development of WINE"? The Windows API is > of course public, so my guess is that isn't a huge bar to creating > WINE. So what are the bars? Is it simply t

Re: What would most aid WINE development?

2005-11-17 Thread Juan Lang
> The Windows API is of course public, so my guess is that isn't > a huge bar to creating WINE. Unfortunately, you guess incorrectly. While the API may legally be public (the interface can't be protected, as far as we know,) it isn't always documented. MS uses undocumented APIs very, very freque

Re: [winecfg] add sound driver test

2005-11-17 Thread Vincent Béron
Le mer 16/11/2005 à 18:47, Robert Reif a écrit : > Steven Edwards wrote: > > >Hi, > > > >On 11/13/05, Robert Reif <[EMAIL PROTECTED]> wrote: > > > > > >>Changelog: > >>- add a simple sound driver test > >> > >>Download the test wave file from: > >> > >> > > > >This is 3 megs. Could we not us

What would most aid WINE development?

2005-11-17 Thread Susheel Daswani
Hello WINE Development community, My name is Susheel Daswani. I am a second-year law student at Berkeley School of Law. I am also a software engineer - I used to develop the LimeWire open source Gnutella p2p application. Nice to meet everyone. For my 'Antitrust & IP' course this semester I am

Re: make builtin dlls visible for applications?

2005-11-17 Thread Juan Lang
> 2) place dummy files for all builtin dlls in c:\windows\system32 I believe this is the correct approach. I know of at least one InstallShield installer (that uses MSI) that searches for IE by looking for the file shdocvw.dll and checking its version. Presumably we'd like our users to have the

Re: Thread tests failure on Windows

2005-11-17 Thread Saulius Krasuckas
* On Thu, 17 Nov 2005, Eric Pouech wrote: > * Paul Vriens wrote: > > > > I've not been able to get the kernel thread tests working on windows. > > The only thing I've found is that changing thread.c: > > > > /* simulate a call to set_test_val(10) */ > > #if 0 > > stack = (int *)ctx.Esp;

Re: RESENT: [msvcrt] I64 and ll support

2005-11-17 Thread Jesse Allen
On 11/17/05, Raphael <[EMAIL PROTECTED]> wrote: > > what is the l64e meaning ? > Double precision floating point. I think that's what I was getting when testing it on windows.

program name clashes

2005-11-17 Thread Daniel
Hi, a problem which just popped up in the newsgroup: Imagine a program called start.exe (or notepad.exe or regedit.exe, etc.). Invoking 'wine start.exe' will not run this program, but the start.exe that comes with wine. The only workaround is to do WINEDLLOVERRIDES="start.exe=n" wine start.exe. Th

Re: Drop the PFD_GENERIC_ACCELERATED flag?

2005-11-17 Thread Peter Beutner
Raphael schrieb: > On Thursday 17 November 2005 19:17, Lionel Ulmer wrote: >>>Thanks for the hint. :) >>>So something like the attached patch would be ok? >> >>Well, it looks OK for me so you can submit it. > > For me too Patch sent. Thanks for your answers. :)

make builtin dlls visible for applications?

2005-11-17 Thread Peter Beutner
Hi There is yet another issue preventing SeriousSam from working. It fails to load opengl32.dll because before loading the dll it makes sure it can find it via SearchPath().The problem is that SearchPath doesn't know about the builtin dlls provided by wine, so it fails to find them and SeriousSa

Re: RESENT: [msvcrt] I64 and ll support

2005-11-17 Thread Raphael
On Tuesday 15 November 2005 00:00, Jesse Allen wrote: > On 11/14/05, Raphael <[EMAIL PROTECTED]> wrote: > > better patch than previous: now Jesse can put his code into #else / > > #endif :) > > > > Changelog: > > - add configure check to detect support of %ll modifier on libc printf > > - add I

Re: Drop the PFD_GENERIC_ACCELERATED flag?

2005-11-17 Thread Raphael
On Thursday 17 November 2005 19:17, Lionel Ulmer wrote: > > Thanks for the hint. :) > > So something like the attached patch would be ok? > > Well, it looks OK for me so you can submit it. For me too > I would have been more 'brutal' than you: if on Windows one does not see an > example of a pixe

Re: CreateFile problem ?

2005-11-17 Thread Raphael
On Thursday 17 November 2005 01:02, Marcelo Duarte wrote: > Raphael escreveu: > >Hi, > > > > I'm working on advpack API LaunchINFSectionEx (trying to get mdac 2.7 > >installer working) > > > >And i have a strage problem: > > > >In attached subset of my "+file,+advpack,+setupapi,+cabinet" log > >you

Re: Thread tests failure on Windows

2005-11-17 Thread Eric Pouech
Paul Vriens wrote: Hi, I've not been able to get the kernel thread tests working on windows. The only thing I've found is that changing thread.c: /* simulate a call to set_test_val(10) */ #if 0 stack = (int *)ctx.Esp; stack[-1] = 10; stack[-2] = ctx.Eip; ctx.Esp -= 2 * sizeo

Re: Test framework RFC

2005-11-17 Thread Saulius Krasuckas
* On Mon, 14 Nov 2005, Jakob Eriksson wrote: > * Saulius Krasuckas wrote: > > * On Mon, 14 Nov 2005, Jakob Eriksson wrote: > > > > > > The recommended thing to do is check for something that can hint of > > > bad things to happen. > > > > (GetVersion() < 0x8000) gives 0 both under Win98 SE a

Re: ADVPACK/tests: exit after 0x8007007e

2005-11-17 Thread James Hawkins
On 11/17/05, Detlef Riekenberg <[EMAIL PROTECTED]> wrote: > > I have NT3.51sp5 with ie5.00 here. (qemu) > Tell me, what you want to be tested. > Can you run the advpack test after applying and compiling the following patch? Just send back the output. Thanks, James Hawkins Index: dlls/advpack/tes

Re: Drop the PFD_GENERIC_ACCELERATED flag?

2005-11-17 Thread Lionel Ulmer
> Thanks for the hint. :) > So something like the attached patch would be ok? Well, it looks OK for me so you can submit it. I would have been more 'brutal' than you: if on Windows one does not see an example of a pixel format with this flag set, just never set it on Wine either :-) Lione

Re: GCC 4.0.1 / WINE bug?

2005-11-17 Thread Evil
Marcus Meissner wrote: >Are you passing any other compiler flags? > > I've not configured anything beyond the defaults, it's pretty plain at this point: gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_USER32_ -D_WINABLE_ -D_REENTRANT -fPIC -Wall -pipe -mpreferred-

Re: [Starcraft-installer] Files copy very slowly

2005-11-17 Thread Willie Sippel
Am Donnerstag, 17. November 2005 10:12 schrieb Dustin Navea: > When installing Starcraft, I noticed that since the last time I tried > installing it (a couple of years ago), the file copy takes a long time. > Typically, Starcraft takes about 5-8 mins to install once the file > copy has started on

Re: [user] static.c: Fix vertical text alignment (Test program)

2005-11-17 Thread Dmitry Timoshkov
"n0dalus" <[EMAIL PROTECTED]> wrote: > Note: I don't know why the SS_STATIC control is white with wine and > gray with Windows, but this is a separate issue from the vertical > alignment. This is because STATIC_PaintTextfn doesn't draw background for SS_SIMPLE controls. This needs a message test

[user] static.c: Fix vertical text alignment (Test program)

2005-11-17 Thread n0dalus
I have written this program as a basic demonstration of vertical alignment in static controls, particularly in relation to my accompanying patch (sent to wine-patches). The program draws 12 static text controls onto the window, and shows the style it's using in the text of each one. Attached is the

Re: GCC 4.0.1 / WINE bug?

2005-11-17 Thread Marcus Meissner
On Thu, Nov 17, 2005 at 07:32:19AM -0600, Evil wrote: > Dmitry Timoshkov wrote: > > >Does compiling with -O0 fix the problem? > > > > > > Unfortunately not. I disabled athlon-xp tuning, then compiled with > -O0... first just win.c, then the entirety of WINE in case it was > related to passed p

Re: [advpack/setupapi] LaunchINFSection

2005-11-17 Thread Markus Amsler
Hi, James Hawkins wrote: * it would help to add test cases wherever you can even if it's just to check how the function handles parameters. I'm also working on advpack inf install functions. Perhaps we should coordinate our work: Here my current Roadmap: 1. get tests into CVS (see below)

Re: ATL creates wrong registry entries

2005-11-17 Thread Jacek Caban
Cihan Altinay wrote: Jacek Caban wrote: @@ -321,7 +321,7 @@ static HRESULT do_process_key(LPCOLESTR break; } -if(key_type != IS_VAL && key_type != DO_DELETE && *iter == '{') { +if(key_type != IS_VAL && key_type != DO_DELETE && *iter == '{' && !iter[1]

Re: GCC 4.0.1 / WINE bug?

2005-11-17 Thread Evil
Dmitry Timoshkov wrote: >Does compiling with -O0 fix the problem? > > Unfortunately not. I disabled athlon-xp tuning, then compiled with -O0... first just win.c, then the entirety of WINE in case it was related to passed parameters... but get the exact same problem. I've opened bug 3852 for t

Re: usb driver proxy

2005-11-17 Thread Damjan Jovanovic
--- Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > * On Thu, 17 Nov 2005, Damjan Jovanovic wrote: > > --- Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > > > * On Mon, 14 Nov 2005, Maris Paupe wrote: > > > > > > > > I have a USB device which doesn' t have a > driver > > > > in linux, I wrote it

Thread tests failure on Windows

2005-11-17 Thread Paul Vriens
Hi, I've not been able to get the kernel thread tests working on windows. The only thing I've found is that changing thread.c: /* simulate a call to set_test_val(10) */ #if 0 stack = (int *)ctx.Esp; stack[-1] = 10; stack[-2] = ctx.Eip; ctx.Esp -= 2 * sizeof(int *); ctx.Eip

Very slow dsound.

2005-11-17 Thread Oliver Stieber
Hi, Sound seems to have slowed down to a crawl and is much more out of sync/time than it used to be a month or so ago in some of the demos I've been using for testing, e.g. the breakpoint invite 2004, http://www.scene.org/file.php?file=/demos/groups/farb-rausch/bp04invi.zip&fileinfo Oliver

problem with shell and acccess 97

2005-11-17 Thread Curro Amores
I have an application with acces97, after some weeks trying to execute it, i got it! but now when the i try to do some function it crashes. i think that the problem comes when the application try to call shell, but im not sure. the code when i click on the button is: Public Sub EjecutaAccessO

Re: GCC 4.0.1 / WINE bug?

2005-11-17 Thread Dmitry Timoshkov
"Evil" <[EMAIL PROTECTED]> wrote: > I've narrowed it down to dlls/user/win.c. If I link the gcc3.4.3 > version of the object file (win.o) with all other objects being the > gcc4.0.1 versions, Dreamweaver MX (v6.1) does not leave the splash > screen hanging. > > I ran a +win trace against both ve

Re: usb driver proxy

2005-11-17 Thread Saulius Krasuckas
* On Thu, 17 Nov 2005, Damjan Jovanovic wrote: > --- Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > > * On Mon, 14 Nov 2005, Maris Paupe wrote: > > > > > > I have a USB device which doesn' t have a driver > > > in linux, I wrote it as kernel module, > > I also have a USB scanner that doesn't wor

Re: does wine ever DllRegisterServer() its own dlls?

2005-11-17 Thread Marcus Meissner
On Thu, Nov 17, 2005 at 01:19:34AM -0800, Damjan Jovanovic wrote: > I noticed that doing "regsvr32 devenum.dll" and > "regsvr32 quartz.dll" makes the Warcraft III in-game > movie play properly on wine (which they normally > don't). > > Is there any reason why wine doesn't > DllRegisterServer() eac

Re: usb driver proxy

2005-11-17 Thread Damjan Jovanovic
--- Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > * On Mon, 14 Nov 2005, Maris Paupe wrote: > > > > I have a USB device which doesn' t have a driver > in linux, I wrote it as > > kernel module, but because I want to run windows > software under wine > > which uses this device it seems that I

does wine ever DllRegisterServer() its own dlls?

2005-11-17 Thread Damjan Jovanovic
I noticed that doing "regsvr32 devenum.dll" and "regsvr32 quartz.dll" makes the Warcraft III in-game movie play properly on wine (which they normally don't). Is there any reason why wine doesn't DllRegisterServer() each of its DLL's when creating its registry for the first time?

Re: ADVPACK/tests: exit after 0x8007007e

2005-11-17 Thread Detlef Riekenberg
Am Mittwoch, den 16.11.2005, 23:31 + schrieb James Hawkins: > > same way later. I guess, this is because of NT3.51 unability to parse > > usual INF-files. > > > > Log message: > > Saulius Krasuckas <[EMAIL PROTECTED]> > > Exit test after first TranslateInfString() failure, whic

[Starcraft-installer] Files copy very slowly

2005-11-17 Thread Dustin Navea
When installing Starcraft, I noticed that since the last time I tried installing it (a couple of years ago), the file copy takes a long time. Typically, Starcraft takes about 5-8 mins to install once the file copy has started on both a windows system, as well on on wine, but now it takes 15+ mins

Icons not created by wineshelllink

2005-11-17 Thread Dustin Navea
I have reopened bug 717, starcraft icons not created by wineshelllink, because, well, they arent... They used to be, but now it spits out an error. See the bug for more info.. Dustin

Re: ADVPACK/tests: exit after 0x8007007e

2005-11-17 Thread Saulius Krasuckas
* On Wed, 16 Nov 2005, James Hawkins wrote: > * On 11/17/05, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > > * On Thu, 17 Nov 2005, Saulius Krasuckas wrote: > > > > > > I didn't see point in adding HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) > > I mean:HRESULT_FROM_WIN32(ERROR

Ignore post about winrar not showing files/folders on other drives

2005-11-17 Thread Dustin Navea
After the listview update, and the corresponding patch that gets winrar to start up again, winrar now shows files/folders on other drives again.. Sorry for the confusion. Dustin

WinRAR doesnt show files on drives other than the default one

2005-11-17 Thread Dustin Navea
When I start WinRAR, it shows the files and folders on the drive that it starts up in, but if I switch to drive Z (the / folder on my reiser fs), nothing shows up there. This is most likely a listview bug, but I´m not sure when it stopped working. Sometime before 0.9 came out. I will file a

Re: Regression: WinRAR now fails to start (not related to Xorg 6.8.2)

2005-11-17 Thread Dustin Navea
Thanks Vitaliy, the patch you sent works perfectly.. Now WinRAR starts up again.. Dustin Vitaliy Margolen wrote: Wednesday, November 16, 2005, 10:31:24 PM, Dustin Navea wrote: I reverted my Xorg install to 6.8.1, so I can at least do some bug hunting, and was able to get wine to run WinRAR

Re: MSCMS/tests: asciify tests

2005-11-17 Thread Saulius Krasuckas
* On Wed, 16 Nov 2005, Robert Shearman wrote: > * Saulius Krasuckas wrote: > > > > +WideCharToMultiByte(CP_ACP, 0, dest, -1, destA, MAX_PATH, NULL, > > NULL); > > +szA = lstrlenA(destA); > > +szW = lstrlenW(dest); > > +ok( szA == szW, "profile name conversion wasn'

Re: Regression: WinRAR now fails to start (not related to Xorg 6.8.2)

2005-11-17 Thread Dustin Navea
Here is the bad patch. Sorry it took so long to get it posted. ChangeSet ID: 21283 CVSROOT:/opt/cvs-commit Module name:wine Changes by: [EMAIL PROTECTED] 2005/11/15 10:54:42 Modified files: dlls/comctl32 : header.c Log message: Raphael Junqueira <[EMAIL