SynSock modules are renamed from PAS extension to INC. Newer Delphi editors have a problem with editing non-unit pas files. INC working fine.
git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@143 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
parent
7bfac2f4b1
commit
7fb761d1aa
16
synsock.pas
16
synsock.pas
@ -1,9 +1,9 @@
|
|||||||
{==============================================================================|
|
{==============================================================================|
|
||||||
| Project : Ararat Synapse | 005.002.000 |
|
| Project : Ararat Synapse | 005.002.001 |
|
||||||
|==============================================================================|
|
|==============================================================================|
|
||||||
| Content: Socket Independent Platform Layer |
|
| Content: Socket Independent Platform Layer |
|
||||||
|==============================================================================|
|
|==============================================================================|
|
||||||
| Copyright (c)1999-2010, Lukas Gebauer |
|
| Copyright (c)1999-2011, Lukas Gebauer |
|
||||||
| All rights reserved. |
|
| All rights reserved. |
|
||||||
| |
|
| |
|
||||||
| Redistribution and use in source and binary forms, with or without |
|
| Redistribution and use in source and binary forms, with or without |
|
||||||
@ -33,7 +33,7 @@
|
|||||||
| DAMAGE. |
|
| DAMAGE. |
|
||||||
|==============================================================================|
|
|==============================================================================|
|
||||||
| The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).|
|
| The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).|
|
||||||
| Portions created by Lukas Gebauer are Copyright (c)2001-20010. |
|
| Portions created by Lukas Gebauer are Copyright (c)2001-2011. |
|
||||||
| All Rights Reserved. |
|
| All Rights Reserved. |
|
||||||
|==============================================================================|
|
|==============================================================================|
|
||||||
| Contributor(s): |
|
| Contributor(s): |
|
||||||
@ -56,18 +56,18 @@ unit synsock;
|
|||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
{$IFDEF CIL}
|
{$IFDEF CIL}
|
||||||
{$I ssdotnet.pas}
|
{$I ssdotnet.inc}
|
||||||
{$ELSE}
|
{$ELSE}
|
||||||
{$IFDEF MSWINDOWS}
|
{$IFDEF MSWINDOWS}
|
||||||
{$I sswin32.pas}
|
{$I sswin32.inc}
|
||||||
{$ELSE}
|
{$ELSE}
|
||||||
{$IFDEF WINCE}
|
{$IFDEF WINCE}
|
||||||
{$I sswin32.pas} //not complete yet!
|
{$I sswin32.inc} //not complete yet!
|
||||||
{$ELSE}
|
{$ELSE}
|
||||||
{$IFDEF FPC}
|
{$IFDEF FPC}
|
||||||
{$I ssfpc.pas}
|
{$I ssfpc.inc}
|
||||||
{$ELSE}
|
{$ELSE}
|
||||||
{$I sslinux.pas}
|
{$I sslinux.inc}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
Loading…
Reference in New Issue
Block a user