Re: Should we work on CRTDLL

2000-07-17 Thread Uwe Bonnes
Andreas Mohr writes: On Sun, Jul 16, 2000 at 03:44:16PM +0200, Uwe Bonnes wrote: Hallo, is there any reason to further work on wine crtdll? Running e.g. a MingW programm needs a lot more functions in crtdll. Running with a native crtdkk however makes the program work. If crtdll

Compilation problem with dlls/ddraw/d3ddevice/mesa.c

2000-07-17 Thread David Elliott
Received the following error messages: gcc -c -I. -I. -I../../include -I../../include -g -O2 -Wall -fPIC -D__WINE__ -D_REENTRANT -I/usr/X11R6/include -o d3ddevice/mesa.o d3ddevice/mesa.c d3ddevice/mesa.c: In function `fill_device_capabilities': d3ddevice/mesa.c:130: `PFNGLCOLORTABLEEXTPROC'

Re: Should we work on CRTDLL

2000-07-17 Thread David Elliott
Uwe Bonnes wrote: Andreas Mohr writes: On Sun, Jul 16, 2000 at 03:44:16PM +0200, Uwe Bonnes wrote: Hallo, is there any reason to further work on wine crtdll? Running e.g. a MingW programm needs a lot more functions in crtdll. Running with a native crtdkk however makes the

Re: Should we work on CRTDLL

2000-07-17 Thread Andreas Mohr
On Mon, Jul 17, 2000 at 09:47:13AM +0200, Uwe Bonnes wrote: Hallo, no quick shots :-) CRTDLL isn't a low level DLL like NTDLL. Many thinks that don't work with wine crtdll work with native crtdll. File handling is done through Api Calls into Kernel/User and so even the file handle

Re: Should we work on CRTDLL

2000-07-17 Thread Uwe Bonnes
Andreas Mohr writes: BTW, can you confirm that native CRTDLL *is* system independent ? How do I check? But I can tell that using native crtdll maked some mingw cross compiler usable. I didn't check yet the resulting code, but will report. Bye Uwe Bonnes[EMAIL PROTECTED]

Re: PATCH: edit control 1

2000-07-17 Thread Peter Hunnisett
On the second hand, consider misc/debugstr.c broken. dbg_vprintf() uses only 500 byte as buffer and horrible fails with 15k of unwrapped string data. Sounds like it should be using something like vsnprintf internally. If no one has any objections to changing the use of vsprintf to vsnprintf

Regression testing and winapi_test

2000-07-17 Thread Albert den Haan
Hello Patrick: You recently wrote on wine-devle about your "condensing-ware" winapi_test project. Is there room in this thing for arbitrary regression tests too? We are working my way through the semi-annual Corel mega merge and would like some way of verifying that the bugs we (Corel and

RE: Regression testing and winapi_test

2000-07-17 Thread Patrik Stridvall
Hello Patrick: You recently wrote on wine-devle about your "condensing-ware" winapi_test project. Yes. I have being otherwise occupied again, so I haven't worked much on it lately. It works but it it currently such a gross hack that I haven't released it yet. It works to some extent

RFC: Serial comms support (long)

2000-07-17 Thread Mike McCormack
Hello Wine Developers, i'd like to ask for some opinions on implementing some features for serial communications support. For applications to successfully use serial ports in Wine, the following is most likely needed: 1) wine server support of comm ports 2) support for overlapped

CDrom - serial failed

2000-07-17 Thread Arnaud . ATOCH
Hi, I got a CD : Atlas routier France that failed to get a proper serial calculated . It looks like all letters are here but not at the good position. Here is what I got from NT cmd prompt : Volume in drive D is France Volume Serial Number is CC6D-56F1 Directory of D:\ 30-05-00 13:25

Re: What's required for Winsock to be 100% complete?

2000-07-17 Thread robert w hall
In message [EMAIL PROTECTED], Stephane Lussier [EMAIL PROTECTED] writes Exact, except a patch for WsControl()/WSAIoctl() that is coming, on the ^ short term, we're not planning to add any new functionality to Winsock. so we can then support native icmp?? Bob

RE: Compilation problem with dlls/ddraw/d3ddevice/mesa.c

2000-07-17 Thread Patrik Stridvall
Received the following error messages: gcc -c -I. -I. -I../../include -I../../include -g -O2 -Wall -fPIC -D__WINE__ -D_REENTRANT -I/usr/X11R6/include -o d3ddevice/mesa.o d3ddevice/mesa.c d3ddevice/mesa.c: In function `fill_device_capabilities': d3ddevice/mesa.c:130:

Re: PATCH: edit control 1

2000-07-17 Thread Alexandre Julliard
"Peter Hunnisett" [EMAIL PROTECTED] writes: Sounds like it should be using something like vsnprintf internally. If no one has any objections to changing the use of vsprintf to vsnprintf I'll do something up and submit it. vsnprintf is not available everywhere, so yes I do object. I don't

kernel32.dll

2000-07-17 Thread Graham Street
Hi, I'm trying wine out on a 32 bit app (called Aspen Graphics).. I am trying this command: wine "Qmaster.exe user 121 ip server INET4.aspenres.com dir ./ " But it says: fixme:console:SetConsoleCtrlHandler (0x4f506c,1) - no error checking or testing yet No handler for Win32 routine

Re: Corel WINE team at Ottawa Linux Symposium

2000-07-17 Thread Jeremy White
Alexandre and I will be there starting Wednesday. Being a strong backer of Wine, I feel it's important to support Wine and all of its traditions. For some reason, helping to spend the Wine party fund is one I seem to feel especially strongly about...g I think we should have a Wine developers

Re: PATCH: ddraw : IDirectDraw interface COM cleanup

2000-07-17 Thread Juergen Schmied
Not jet looked really deep into it but creating new instances of objects in a QueryInterface call violates basic rules of COM. Every call of QueryInterface for a given IID _MUST_ return a pointer to the same object means: QueryInterface is never supposed to create objects. (Example how to do

RE: EventExpose race condition problem

2000-07-17 Thread Stephane Lussier
Ian, This patch should solve the splash screen problem you're experiencing. Let me know if it works. The patch is slightly different to what Gerard posted last week. I've done the invalidation in the service thread, and erased the background on reception of WM_SYNCPAINT only if it was needed.

Re: PATCH: ddraw : IDirectDraw interface COM cleanup

2000-07-17 Thread Marcus Meissner
On Mon, Jul 17, 2000 at 08:31:38PM +0200, Juergen Schmied wrote: Not jet looked really deep into it but creating new instances of objects in a QueryInterface call violates basic rules of COM. Every call of QueryInterface for a given IID _MUST_ return a pointer to the same object means:

RE: Regression testing and winapi_test

2000-07-17 Thread Patrik Stridvall
I will see if I find time to make a prerelease of winapi_test later today. At least something useful currently works, eventhough it still is a gross hack (slow and bloated). I found some time, but not that much. :-) Very quick install instruction, there will surely be some mistakes. Apply

Re: Corel WINE team at Ottawa Linux Symposium

2000-07-17 Thread Jim Aston
Traditionally there is a party each night hosted by a local Linux company(Corel's is Thursday). Free food and open bar is part of the tradition. I suggest it would be a good place to start. Though it might be difficult to do any damage to the party fund. ;-\ They are also centered in the

FW: EventExpose race condition problem

2000-07-17 Thread Stephane Lussier
I've made a mistake in my previous patch, Take this one instead. Stephane. -Original Message- From: Stephane Lussier [mailto:[EMAIL PROTECTED]] Sent: Monday, July 17, 2000 3:07 PM To: Ian Schmidt Cc: [EMAIL PROTECTED]; gerard patel Subject: RE: EventExpose race

Re: kernel32.dll

2000-07-17 Thread Andreas Mohr
On Mon, Jul 17, 2000 at 01:50:15PM -0400, Graham Street wrote: Hi, I'm trying wine out on a 32 bit app (called Aspen Graphics).. I am trying this command: wine "Qmaster.exe user 121 ip server INET4.aspenres.com dir ./ " But it says: fixme:console:SetConsoleCtrlHandler (0x4f506c,1) -

Wine's sample programs

2000-07-17 Thread Francois Gouget
The sample Winelib programs don't compile on my machine. I have a patch ready (see attachment) but I'm not sure I'm doing everything right so I thought I'd ask here before submitting it to wine-patches: * rpcrt4 is missing from the link list Actually I don't have a question for that

Re: Corel WINE team at Ottawa Linux Symposium

2000-07-17 Thread Jeremy White
Jim Aston wrote: Traditionally there is a party each night hosted by a local Linux company(Corel's is Thursday). Free food and open bar is part of the tradition. I suggest it would be a good place to start. Though it might be difficult to do any damage to the party fund. ;-\