UPD: Revert WFX API changes, it is need to create new universal plugin type for such things

This commit is contained in:
Alexander Koblov 2010-07-12 04:33:28 +00:00
commit 63b8a52f52
11 changed files with 28 additions and 260 deletions

View file

@ -25,12 +25,7 @@ and Procedures</a></td>
</table>
<a name="@Description"></a>
<h2 class="description">Description</h2>
<p>Double Commander uses <a href="http://www.ghisler.com/">Total
Commander</a>
WFX plugin API, so you can use <a
href="http://ghisler.fileburst.com/fsplugins/fspluginhelp2.0.zip">documentation</a>
from Total Commander for writing file system plugins. This document
contains Double Commander extensions to WFX plugin API.</p>
<p></p>
<a name="@FuncsProcs"></a>
<h3 class="summary">Functions
and Procedures</h3>

View file

@ -543,37 +543,6 @@ function FsContentGetDefaultViewW(ViewContents,ViewHeaders,ViewWidths,
}
{ Network API extension }
const
FS_NM_ACTION_ADD = 0;
FS_NM_ACTION_EDIT = 1;
FS_NM_ACTION_DELETE = 2;
{ Function prototypes: }
{
procedure FsNetworkGetSupportedProtocols(Protocols: PAnsiChar; MaxLen: LongInt); stdcall;
procedure FsNetworkGetSupportedProtocolsW(Protocols: PWideChar; MaxLen: LongInt); stdcall;
function FsNetworkGetConnection(Index: LongInt; Connection: PAnsiChar; MaxLen: LongInt): LongBool; stdcall;
function FsNetworkGetConnectionW(Index: LongInt; Connection: PWideChar; MaxLen: LongInt): LongBool; stdcall;
function FsNetworkManageConnection(MainWin: HWND; Connection: PAnsiChar; Action: LongInt; MaxLen: LongInt): LongBool; stdcall;
function FsNetworkManageConnectionW(MainWin: HWND; Connection: PWideChar; Action: LongInt; MaxLen: LongInt): LongBool; stdcall;
function FsNetworkOpenConnection(Connection: PAnsiChar; RootDir, RemotePath: PAnsiChar; MaxLen: LongInt): LongBool; stdcall;
function FsNetworkOpenConnectionW(Connection: PWideChar; RootDir, RemotePath: PWideChar; MaxLen: LongInt): LongBool; stdcall;
}
implementation
end.