was cvs diff now .. future cvs patch

2003-05-28 Thread Tom
Hello, Does everyone here agree with Dimi's suggestion to add : If you work over a slow link, you may want to compress the traffic with -z3. However, there are known bugs in CVS with this compressed communication mode, make sure you use cvs version 1.11.5 or later. Just thought I would ask before

Wine folks interested in a CHM spec?

2003-05-28 Thread Pabs3
Hi wine peeps, Just wondering if Wine folks are implementing a chm viewer and if you would be interested in a specification on the internal files of CHMs and even relicencing some of the code for my chm decompiler. all at http://bonedaddy.net/pabs3/hhm/ BTW; please cc me in replies since,

kernel32 file operations and wildcard filenames

2003-05-28 Thread Rolf Kalbermatter
Having done some tests on kernel32.dll file functions I have come across a problem with filenames containing wildcards. Under Windows (2K) all functions such as DeleteFile, CopyFile, MoveFile, CreateDirectory and such do return FALSE and normally set the last error to ERROR_INVALID_NAME (123) if

cvs.diff

2003-05-28 Thread Tom
Then use decent tools = upgrade CVS. Well in my simple point of view I am ! I went and got the latest update for RH 7.3 from : http://www.rpmfind.net//linux/RPM/redhat/updates/7.3/i386/cvs-1.11.1p1-8.7.i386.html I also just looked and RH *9* use's 1.11.2-10 here is the link :

Re: Agent crashes when sending article

2003-05-28 Thread Rein Klazes
On Fri, 23 May 2003 23:38:44 +0200, you wrote: 45 0x4081a6e8 (CallWindowProcA+0x88(func=0x413b0db8, hwnd=0x1003e, msg=0x105, wParam=0x12, lParam=0xc0380001) [winproc.c:2854] in user32.dll.so) (ebp=406b2904) 46 0x407fc1da (DispatchMessageA+0x12a(msg=0x406b2980) [message.c:794] in

Re: msdos/int21 CREAT special cases

2003-05-28 Thread Ferenc Wagner
Andreas Mohr [EMAIL PROTECTED] writes: On Mon, May 26, 2003 at 01:04:49PM +0200, Ferenc Wagner wrote: Volume label creation should fail, not create a regular file. Similarly for file names ending in a slash. Hmm, and is there a reason to not do it in _lcreat16() instead? Or is _lcreat16()

Re: cvs.diff

2003-05-28 Thread Ferenc Wagner
Tom [EMAIL PROTECTED] writes: I say go with -z 0 and let it be If I found -z0 in the docs, I would probably think that compression is explicitly forbidden/impossible. Just leave it out, no compression is the default anyway, and put the notice next to it.

Re: Wine folks interested in a CHM spec?

2003-05-28 Thread Ender
I've already written the major chuck of a CHM viewer - to the point I have a native Windows viewer using nothing but the WebBrowser ActiveX control. The secondary problem is how to display the HTML + JavaScript needed for a CHM viewer. I've started work on this several times, and so far the

Re: kernel32 file operations and wildcard filenames

2003-05-28 Thread Pouech Eric DMI AEI CAEN
Under Windows (2K) all functions such as DeleteFile, CopyFile, MoveFile, CreateDirectory and such do return FALSE and normally set the last error to ERROR_INVALID_NAME (123) if one of the filenames passed in contains a wildcard (*?). Wines kernel32 behaves somewhat different. Apart from

Re: Wine folks interested in a CHM spec?

2003-05-28 Thread Mike Hearn
On Wed, 2003-05-28 at 11:56, Ender wrote: I've already written the major chuck of a CHM viewer - to the point I have a native Windows viewer using nothing but the WebBrowser ActiveX control. This would be a good thing to submit anyway. It's been possible (though not easy) to install IE into

Re: Agent crashes when sending article

2003-05-28 Thread Gerhard W. Gruber
On Wed, 28 May 2003 12:06:45 +0200, Rein Klazes [EMAIL PROTECTED] wrote: Agent dies when handling a WM_SYSKEYUP message for the release of the ALT key. I checked under real windows. There this message is not sent, but a WM_KEYUP message instead. The attached patch corrects the behaviour to what

Re: Agent crashes when sending article

2003-05-28 Thread Gerhard W. Gruber
On Wed, 28 May 2003 12:06:45 +0200, Rein Klazes [EMAIL PROTECTED] wrote: The attached patch corrects the behaviour to what I see under Windows. Please give it a try. Unfortunately I sent my previous mail to early. Agent just crashed again when sending email. I have to see if I can find a

Re: msdos/int21 CREAT special cases

2003-05-28 Thread Andreas Mohr
On Mon, May 26, 2003 at 01:04:49PM +0200, Ferenc Wagner wrote: Volume label creation should fail, not create a regular file. Similarly for file names ending in a slash (this is actually needed for PKSFX Version 2.04g to unpack directory trees).

Re: Re: msdos/int21 CREAT special cases

2003-05-28 Thread Pouech Eric DMI AEI CAEN
please stop using krnl386.exe export when possible (especially for dos emulation which is going out of kernel32/krnl386.exe combo). So, if CreateFile can do, please use it (ditto for any other krnl386 file related functions) this is needed for proper DLL separation Hmm, and is there a reason to