Vincent Snijders wrote:
> Mattias Gaertner wrote:
>
>> My ISP is currently on a blacklist, so I can't send a mail to the FPC
>> list.
>> Can someone ask on the fpc list for me:
>>
>> Why has Delphi 7:
>>
>> IUnknown = IInterface;
>>
>> and FPC
>>
>> IInterface = IUnknown;
>>
>> ?
>
History.
___
Mattias Gaertner wrote:
My ISP is currently on a blacklist, so I can't send a mail to the FPC list.
Can someone ask on the fpc list for me:
Why has Delphi 7:
IUnknown = IInterface;
and FPC
IInterface = IUnknown;
?
Vincent
___
fpc-devel maillist
On 1/6/06, Ales Katona <[EMAIL PROTECTED]> wrote:
> Honestly tho I never got that error. Btw you might want to try LNet (
> http://wiki.lazarus.freepascal.org/index.php/LNet ) atleast you can see
> how I do it and prehraps compary my code with your (you're looking to
> TLBaseSocket.SetupSocket).
>
Hi,
I added 2 missing abstract methods from the parent class to the
TSQLConnection class.
StartTransaction and EndTransaction. The compiler is complaining about
a few others, but I haven't had a look at them yet.
Regards,
- Graeme -
Index: sqldb.pp
==
Ok a bit strange topic..
this is the latest gratest version.
The archive contains "rtl" subdir with added .inc files for platforms
I'm sure of and the diff to change errors.pp.
Someone who has access to other platforms will have to fill in their
.inc files.
Ales
errors.tar.gz
Description
Alexander Todorov wrote:
procedure TTCPClient.Connect;
begin
FSocket := Socket(AF_INET, SOCK_STREAM, 0); // create socket descriptor
if (FSocket <= 0) then
raise Exception.Create(IntToStr(SocketError));
.
end;
It seems like some Winsock1 vs Winsock2 issue to me.
If you use unit "win