Re: [Freedos-kernel] INT25

2004-03-08 Thread Arkady V.Belousov
Hi! 7--2004 18:23 [EMAIL PROTECTED] (Matthias Paul) wrote to [EMAIL PROTECTED]: MP of DR DOS unless you would special case them. On the other hand, always MP using the new form on any DOS 3.31+ the least does not cause any problems MP under DR DOS, PC DOS or MS-DOS, even if the disk is smaller

Re: [Freedos-kernel] root dot find bug fix patch

2004-03-08 Thread Luchezar Georgiev
On Mon, 8 Mar 2004 00:21:41 + (GMT), Bart Oldeman wrote: Hmm. Further testing seems to reveal that this whole bit isn't valid, as findfirst is not the same as a dir! ie. this whole bit needs to be deleted. /* Lixing Yuan Patch */ if (bAllowWildcards)/* for find first */ {

Re: [Freedos-kernel] Re: default to unsigned char in TC/BC?

2004-03-08 Thread Arkady V.Belousov
Hi! 8--2004 14:57 [EMAIL PROTECTED] (Luchezar Georgiev) wrote to [EMAIL PROTECTED]: And this will be another mistake: in C/C++ standard `char' may be signed, and _it is_ (by default) in BC. (But not in OW, BTW). Stupid, but this is so. This (troubles with sign extension) is why I

Re: [Freedos-kernel] re: INT25

2004-03-08 Thread Arkady V.Belousov
! 8--2004 20:46 [EMAIL PROTECTED] (Eric Auer) wrote to [EMAIL PROTECTED]: EA like that, your software should do the right thing both when compiled EA with TC and with BC - use an #ifdef __TURBOC__ ... Wrong. Should be: #if defined (__TURBOC__) __TURBOC__ = ..., where ... is a version of

Re: [Freedos-kernel] BC/TC comment, root dot find bug fix patch

2004-03-08 Thread Arkady V.Belousov
Hi! 8--2004 21:34 [EMAIL PROTECTED] (Michal H. Tyc) wrote to [EMAIL PROTECTED]: #define isalnum(c) (_ctype[(c) + 1] (_IS_DIG | _IS_UPP | _IS_LOW)) BTW, BC anyway defines _ctype only as 128-byte table. :( MHT Really? At least in BC 3.1, it is a 257-byte table (a zero Ops, sorry, really

[Freedos-kernel] Can't find Lixing Yuan

2004-03-08 Thread Luchezar Georgiev
Unfortunately my message to Lixing Yuan bounced :( Lucho [EMAIL PROTECTED]: 203.192.14.200 does not like recipient. Remote host said: 550 sorry, there is no such user. Giving up on 203.192.14.200. --- This SF.Net email is sponsored by: IBM

Re: [Freedos-kernel] Borland C versions

2004-03-08 Thread Luchezar Georgiev
Wrong. Should be: #if defined (__TURBOC__) __TURBOC__ = ..., where ... is a version of BC, which presents new style absread()/abswrite(). Borland C has also the manifest constant __BORLANDC__ which is 0x200 for 2.0 0x400 for 3.0 0x410 for 3.1 0x452 for 4.0 0x460 for 4.5 0x500 for 5.0 0x520 for