--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be
BTW, these are resolved by playing with directories' order in Project
Options...
Thanks anyway for reading.
On Sat, Oct 17, 2009 at 4:14 PM, Fastream Technologies
wrote:
> Ok forcing ICS to use integer instead of Byte did not work either. But why
> does this error occur? How could the compiler f
unsigned int __fastcall
ContentProxyClientClass::decompressFullStream(TMemoryStream *inputStream,
TStream *outputStream, bool clearOutputStream)
{
try
{
inputStream->Seek((__int64)0, soBeginning);
if(clearOutputStream)
((TMemoryStream*)outputStream)->Clear();
ZlibDecompressStream(input
Ok forcing ICS to use integer instead of Byte did not work either. But why
does this error occur? How could the compiler find System.Byte and Byte
ambigous? What could be the source of this??!
On Sat, Oct 17, 2009 at 2:09 PM, Fastream Technologies
wrote:
> Ok my very simple question about Delphi
Ok my very simple question about Delphi and ICS: How do we enforce a type
for a const? For example in C++,
static const int dummy = 1; is the way to force a static const
integer called dummy with a variable value of "1". If we can force ICS to
use integer for all const in SSL units, my problem wil
Hello,
I see in ...libeay.pas for example:
const
SSL_SESS_CACHE_NO_AUTO_CLEAR= $0080;
which translates in BCB2010 in header as,
static const Byte SSL_SESS_CACHE_NO_AUTO_CLEAR = 0x80;
which is confusing for most projects as there are usually lots of "Byte"
defined. Giving,
[BCC3
problem I have is that while this file download is active I am also trying
to write data to a USB device. There is a certain amout of buffering
available but large amounts of network activity prevent the application
from servicing the USB port. Is there any way to reduce the overall
priority of
Angus Robertson - Magenta Systems Ltd wrote:
>> OverbyteIcsMimeDec.pas around line #2258
>>
>> PFileName := DecodeMimeInlineValue (FDecodeW.FileName) ;
>> PSubject := FDecodeW.Subject; {V7.18 Bjørnar}
>>
>> The subject should be IMO MIME inline decoded, shouldn't it?
>
> Probably, alt