Re: [fpc-devel] Re: [lazarus-dev] IInterface IUnknown

2006-01-06 Thread Florian Klaempfl
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. ___

[fpc-devel] Re: [lazarus-dev] IInterface IUnknown

2006-01-06 Thread Vincent Snijders
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

Re: [fpc-devel] WinSock error 10106

2006-01-06 Thread Alexander Todorov
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). >

[fpc-devel] sqldb.pp patch - Abstract methods not implemented

2006-01-06 Thread Graeme Geldenhuys
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 ==

[fpc-devel] Errors patch, c'est la vie

2006-01-06 Thread Ales Katona
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

Re: [fpc-devel] WinSock error 10106

2006-01-06 Thread Ales Katona
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