Re: how to declare COM class?

2002-09-25 Thread Jürgen Schmied
I declared a COM class best I can from looking at other COM class but I am getting syntax errors. I could not find any guide/manual on COM development. Can someone help or point to a guide on COM development? A guid might not help much since wine implements com objects with pure C. If

Re: RESEND: Handle shortened *optval arg. in WS_setsockopt / WS_SO_RCVTIMEO

2002-09-25 Thread Rein Klazes
On Tue, 24 Sep 2002 16:10:43 -0500, you wrote: + if (level == SOL_SOCKET optname == SO_RCVTIMEO optlen sizeof(struct timeval)) { + if (optlen == sizeof(time_t)) { + /* Apparently WinSock will accept a shortened struct timeval. In Unix the arg optval

Re: Where is the specfile documented nowadays?

2002-09-25 Thread Martin Wilck
Am Mit, 2002-09-25 um 01.48 schrieb Bill Medland: (I guess we ought to do something about winemaker too; it still names things as lib.so) Can you be more specific? I thought with my latest patches these issues with winemaker were settled. Martin -- Martin WilckPhone: +49

Modal VB-Dialog hangs

2002-09-25 Thread Fabian Cenedese
Hi I have a problem with a VB6 app. It opens a second dialog with modal flag. After this everything hangs (WaitForMultipleObject), all windows in wine are frozen. I tried to debug it, I also read the tips and hints in the FAQ for frozen programs but I still don't get it. Would be great if

Re: how to declare COM class?

2002-09-25 Thread Lionel Ulmer
On Wed, Sep 25, 2002 at 10:13:20AM +0200, Jürgen Schmied wrote: A guid might not help much since wine implements com objects with pure C. If you get stuck you could mail your code to this list for help. Yeah, a guuid on COM would be better (sorry for the lame joke). Anyway, in the Dr GUI URL

Re: ToDo's

2002-09-25 Thread Martin Wilck
Am Die, 2002-09-24 um 22.55 schrieb Steven Edwards: - Better seperation of win16/32 code. - remove/rewite win16/9x api dependancy on newer code - remove/rewrite wineisms from code - documentation fixes I may be missing something, but there's already enough on that list to keep all of us

Re: d3d8 header patch.

2002-09-25 Thread Dimitrie O. Paun
On September 25, 2002 09:13 am, Yong Chi wrote: I gave a .txt extension this time to make sure that the attachment got treated as a text file. =) Excellent. But you didn't send it in the right format. Do cvs diff -u include/d3d8.h You should add diff -u to your .cvsrc file. -- Dimi.

Re: Modal VB-Dialog hangs

2002-09-25 Thread Dmitry Timoshkov
Fabian Cenedese [EMAIL PROTECTED] wrote: I have a problem with a VB6 app. It opens a second dialog with modal flag. After this everything hangs (WaitForMultipleObject), all windows in wine are frozen. I tried to debug it, I also read the tips and hints in the FAQ for frozen programs but I

ToDo's

2002-09-25 Thread Thomas Wickline
Thanks to everyone who has gave feedback on this. Here is a draft of eveything up to today. As always in need of feedback ;) Tom Wine ToDo's as of 9/25/02 Contact : [EMAIL PROTECTED] Wine ToDo OverView Window management: * Window management needs proper

Re: MZ_FillPSP() in dlls/winedos/module.c

2002-09-25 Thread Ove Kaaven
On Tue, 24 Sep 2002 [EMAIL PROTECTED] wrote: I have a script that passes a long argument string when calling a command handler(command.com or other comspec replacement). This code inside of MZ_FillPSP() if(length 126) { ERR(Command line truncated! (length %d maximum length 126)\n,

Re: d3d8 header patch.

2002-09-25 Thread Uwe Bonnes
Hello! I gave a .txt extension this time to make sure that the attachment got treated as a text file. =) Now again as a unified diff (diff -u), and everybody is hapy :-) Bye -- Uwe Bonnes[EMAIL PROTECTED] Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt

Re: another MZ_Exec() problem...

2002-09-25 Thread Ove Kaaven
On Tue, 24 Sep 2002 [EMAIL PROTECTED] wrote: Inside of MZ_Exec() I call out to CreateProcessA() if the executable is PE. I've set the lpEnvironment parameter of CreateProcessA() to null to have it inherit the environment of the caller but this isn't working correctly. The path and other

Re: WineLib and DLLs (Winedump)

2002-09-25 Thread steve . lustbader
Does it matter that the dll is exporting C++ classes, not straight C functions? That could make things slightly more complicated, since MS and gcc use different name mangling systems. if you declare functions with extern C linkage you should be OK. However there are differences in how gcc

Re: Where is the specfile documented nowadays?

2002-09-25 Thread Bill Medland
- Original Message - From: Martin Wilck [EMAIL PROTECTED] To: Bill Medland [EMAIL PROTECTED] Cc: wine-devel [EMAIL PROTECTED] Sent: Wednesday, September 25, 2002 6:08 AM Subject: Re: Where is the specfile documented nowadays? Am Mit, 2002-09-25 um 01.48 schrieb Bill Medland: (I guess

Re: Modal VB-Dialog hangs

2002-09-25 Thread Bill Medland
All being well, that should have been fixed by something Alexandre put into the CVS yesterday. I am just building today's code to check that it solves the problem for our application. I'll let you know when I have tested ours, and I'll test yours too. (I presume you don't do daily updates)

Re: WineLib and DLLs (Winedump)

2002-09-25 Thread steve . lustbader
Does it matter that the dll is exporting C++ classes, not straight C functions? That could make things slightly more complicated, since MS and gcc use different name mangling systems. if you declare functions with extern C linkage you should be OK. However there are differences in how gcc

Hand Cursor

2002-09-25 Thread Gustavo Junior Alves
The hand cursor hotspot is in wrong position (lower-right instead in the finger). Where I find information abou how I can fix it? Thanks, Gustavo

Re: Hand Cursor

2002-09-25 Thread Steven Edwards
Gustavo Junior Alves wrote: The hand cursor hotspot is in wrong position (lower-right instead in the finger). Where I find information abou how I can fix it? Thanks, Gustavo Could be in the user32 resources

Re: ToDo's

2002-09-25 Thread Steven Edwards
Thomas Wickline wrote: Thanks to everyone who has gave feedback on this. Here is a draft of eveything up to today. As always in need of feedback ;) Tom Wine ToDo's as of 9/25/02 Contact : [EMAIL PROTECTED] Wine ToDo OverView I forgot to add - rewrite/fix unixisms

Re: ToDo's

2002-09-25 Thread Steven Edwards
I may be missing something, but there's already enough on that list to keep all of us busy until the release of Windows ZXF 2016. Are there plans to go through a public voting to determine which of these we need to fix until 0.9/1.0 ? Don't get me wrong, no specific recjection against

Re: Modal VB-Dialog hangs

2002-09-25 Thread Bill Medland
- Original Message - From: Fabian Cenedese [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 25, 2002 7:01 AM Subject: Modal VB-Dialog hangs Hi I have a problem with a VB6 app. It opens a second dialog with modal flag. After this everything hangs

Re: ToDo's

2002-09-25 Thread Andriy Palamarchuk
--- Steven Edwards [EMAIL PROTECTED] wrote: I forgot to add - rewrite/fix unixisms Steven, can you explain this? Wine is Unix application/library, so it has to use Unix calls. Andriy __ Do you Yahoo!? New DSL Internet Access from SBC

Re: ToDo's

2002-09-25 Thread Steven Edwards
Andriy Palamarchuk wrote: --- Steven Edwards [EMAIL PROTECTED] wrote: I forgot to add - rewrite/fix unixisms Steven, can you explain this? Wine is Unix application/library, so it has to use Unix calls. Andriy Hola Andriy Sure, sorry I wasnt to clear on this. I should have

[Controversial] Developper only CVS sandbox

2002-09-25 Thread Lionel Ulmer
Hi all, As Dimi is not the only one that can start flames on wine-devel, let's start a new one :-) When I see the work that is starting to go on on D3D8 or even on my old D3D code, I think that it would be nice if there was some CVS 'sandbox' where Wine developper could interact on shared code

Re: rfc: 16bit USER function

2002-09-25 Thread Alexandre Julliard
Michael Stefaniuc [EMAIL PROTECTED] writes: from windows/*.c to dlls/user/user16.c but i don't know if that's the right place to put them because there are already some dlls/user/*16.c files. The ones dealing with windows and messages should be in wnd16.c and msg16.c respectively; you can

RE: [Controversial] Developper only CVS sandbox

2002-09-25 Thread Patrik Stridvall
As Dimi is not the only one that can start flames on wine-devel, let's start a new one :-) Unfortunately your topic is not controversial enough. :-) When I see the work that is starting to go on on D3D8 or even on my old D3D code, I think that it would be nice if there was some CVS

Re: [Controversial] Developper only CVS sandbox

2002-09-25 Thread Lionel Ulmer
Unfortunately your topic is not controversial enough. :-) Damn :-) Obviously anybody that have the resources can setup a CVS server and give accounts to others. Yeah, my plan was to find time and install a CVS server on my own box. The problem is that 1) I do not have a lot of uplink

Re: [Controversial] Developper only CVS sandbox

2002-09-25 Thread Vincent Béron
Le mer 25/09/2002 à 17:00, Lionel Ulmer a écrit : Unfortunately your topic is not controversial enough. :-) Damn :-) Next time, add something about an automatic indentation program, or which text editor should be mandatory to hack on Wine. That'll do the trick :) Obviously anybody that

Re: [Controversial] Developper only CVS sandbox

2002-09-25 Thread Joerg Mayer
On Wed, Sep 25, 2002 at 10:14:26PM +0200, Lionel Ulmer wrote: This sandbox would be closed (ie it would be a developper only Wine tree) to NOT start another Wine fork and all development on this sandbox would be merged back in Wine when they are ready (and then would still go the Alexandre

Re: [Controversial] Developper only CVS sandbox

2002-09-25 Thread Dimitrie O. Paun
On September 25, 2002 05:00 pm, Lionel Ulmer wrote: Yes, but I do not know if they provide restricted CVS access. I think it's a great idea, even if for the fact that this way the changes I make are not sitting on my HD, without backup. Plus, this way, I can commit _small_ changes in CVS, as I

Re: winemaker (WAS Where is the specfile documented nowadays?)

2002-09-25 Thread Bill Medland
- Original Message - From: Martin Wilck [EMAIL PROTECTED] To: Bill Medland [EMAIL PROTECTED] Cc: wine-devel [EMAIL PROTECTED] Sent: Wednesday, September 25, 2002 6:08 AM Subject: Re: Where is the specfile documented nowadays? Am Mit, 2002-09-25 um 01.48 schrieb Bill Medland: (I guess

Re: [Controversial] Developper only CVS sandbox

2002-09-25 Thread Lionel Ulmer
Next time, add something about an automatic indentation program, or which text editor should be mandatory to hack on Wine. That'll do the trick :) Ah yes... TAB sucks, four spaces rules ! (is it OK for a flame ?) If you hate it, why do you want to use it then? :-) Well, the problem is that

Re: [Controversial] Developper only CVS sandbox

2002-09-25 Thread Lionel Ulmer
IMHO it should be open and be jsut another branch of winehq. That would be the best... But well, I never heard much good about CVS's prowess in handling branching (with all the mess like handling properly conflicts, precise branch management, ...). Lionel --

Re: Where is the specfile documented nowadays?

2002-09-25 Thread Francois Gouget
On 25 Sep 2002, Martin Wilck wrote: Am Mit, 2002-09-25 um 01.48 schrieb Bill Medland: (I guess we ought to do something about winemaker too; it still names things as lib.so) Can you be more specific? I thought with my latest patches these issues with winemaker were settled. There

Re: MZ_FillPSP() in dlls/winedos/module.c

2002-09-25 Thread Chris Morgan
On Wednesday 25 September 2002 06:13 pm, Francois Gouget wrote: On Wed, 25 Sep 2002, Ove Kaaven wrote: On Tue, 24 Sep 2002 [EMAIL PROTECTED] wrote: [...] I have a script that passes a long argument string when calling a command handler(command.com or other comspec replacement).

Re: MZ_FillPSP() in dlls/winedos/module.c

2002-09-25 Thread Francois Gouget
On Wed, 25 Sep 2002, Chris Morgan wrote: [...] I haven't tested this with wcmd.exe. I'm also not using command.com as my comspec, I'm using 4nt, a command.com replacement. So it is really a dos application. In that case, according to Ove's email it seems there is no way past the 128 character

Re: MZ_FillPSP() in dlls/winedos/module.c

2002-09-25 Thread Chris Morgan
On Wednesday 25 September 2002 07:47 pm, Francois Gouget wrote: On Wed, 25 Sep 2002, Chris Morgan wrote: [...] I haven't tested this with wcmd.exe. I'm also not using command.com as my comspec, I'm using 4nt, a command.com replacement. So it is really a dos application. In that case,

re: d3d8header patch

2002-09-25 Thread Yong Chi
Hmm. I am for whichever is more correct. I am not sure if having it in exact same header file makes difference for wine since the header is not same as it would be under VC++. If someone has better idea/reason for either way, please let me know. Thanks Yong --- Ann and Jason Edmeades [EMAIL

Re: d3d8 header patch.

2002-09-25 Thread Yong Chi
Try number 2.. -p --- Dimitrie O. Paun [EMAIL PROTECTED] wrote: On September 25, 2002 09:13 am, Yong Chi wrote: I gave a .txt extension this time to make sure that the attachment got treated as a text file. =) Excellent. But you didn't send it in the right format. Do cvs diff -u

Re: Re: another MZ_Exec() problem...

2002-09-25 Thread chrismorgan
Anyone planning on looking into this in the near term? It could be fixed relatively easily in MZ_Exec() if I knew of some way to get the environment variables and their values. I'm not sure if the same kind of fix would apply to fixing CreateProcess(). Chris From: Eric POUECH [EMAIL

Re: RESEND: Handle shortened *optval arg. in WS_setsockopt / WS_SO_RCVTIMEO

2002-09-25 Thread Greg Turner
awesome, thanks for your input Rein! I am no unix sockets guru (nor, obviously, am I a winsock guru ;) so this is really helpful, I'll try and submit a revision to my revision (which is apparently already in wine). That explains the time value out I was seeing of 10,000! 3 hours sounded

Re: RESEND: Handle shortened *optval arg. in WS_setsockopt / WS_SO_RCVTIMEO

2002-09-25 Thread Greg Turner
hmm, somehow this failed to make it through to the list Trying again... awesome, thanks for your input Rein! I am no unix sockets guru (nor, obviously, am I a winsock guru ;) so this is really helpful, I'll try and submit a revision to my revision (which is apparently already in

re: d3d8header patch

2002-09-25 Thread Francois Gouget
On Wed, 25 Sep 2002, Yong Chi wrote: Hmm. I am for whichever is more correct. I am not sure if having it in exact same header file makes difference for wine since the header is not same as it would be under VC++. I think that when in doubt the policy is to follow the latest Win32 SDK. The

Re: Using winbind with Wine

2002-09-25 Thread Richard Sharpe
On Wed, 25 Sep 2002, Rafal Szczesniak wrote: On Wed, Sep 25, 2002 at 03:06:05PM +0200, Martin Wilck wrote: Am Mit, 2002-09-25 um 00.55 schrieb Andrew Bartlett: As to unicode, I have designated one call as being in utf8, to cope with external interaction, so it's possible things

Re: Using winbind with Wine

2002-09-25 Thread Rafal Szczesniak
On Wed, Sep 25, 2002 at 03:06:05PM +0200, Martin Wilck wrote: Am Mit, 2002-09-25 um 00.55 schrieb Andrew Bartlett: As to unicode, I have designated one call as being in utf8, to cope with external interaction, so it's possible things can happen here. What matters to wine is that if a

Re: Using winbind with Wine

2002-09-25 Thread Luke Howard
I started thinking about other options when I found the wbinfo -n call. AFAIK there is no way to obtain equivalent info through PAM/NSS, simply because these APIs have no concept of a SID. Obviously apart from the SID there is a lot more information to gather from a PDC. I have not digged deeply

Re: Using winbind with Wine

2002-09-25 Thread Rafal Szczesniak
On Thu, Sep 26, 2002 at 03:08:29AM +0930, Richard Sharpe wrote: On Wed, 25 Sep 2002, Rafal Szczesniak wrote: Seems like you'd like to see one more library as winbind's companion. However, if libsmbclient is licensing stumbling block, then similar situation may happen with such winbind's

Re: Using winbind with Wine

2002-09-25 Thread Martin Wilck
Am Mit, 2002-09-25 um 00.55 schrieb Andrew Bartlett: Firstly, it's good to see that winbind is starting to get some interest :-) I have been ignoring it so far, but in the context of the current inquiries I tried it out and was impressed :-) Secondly, don't fall into the trap squid (with