mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
ADD: Use connections in TWfxPluginFileSource
This commit is contained in:
parent
a7534d3d7e
commit
c23b3efae4
6 changed files with 307 additions and 19 deletions
|
|
@ -127,6 +127,10 @@ const FS_STATUS_START=0;
|
|||
|
||||
FS_STATUS_OP_SYNC_DELETE=18;
|
||||
|
||||
FS_STATUS_OP_GET_MULTI_THREAD=19;
|
||||
|
||||
FS_STATUS_OP_PUT_MULTI_THREAD=20;
|
||||
|
||||
{Flags for FsExtractCustomIcon}
|
||||
|
||||
const FS_ICONFLAG_SMALL=1;
|
||||
|
|
@ -167,6 +171,14 @@ const FS_BITMAP_NONE=0;
|
|||
|
||||
FS_CRYPTOPT_MASTERPASS_SET=1; {The user already has a master password defined}
|
||||
|
||||
{Flags for FsGetBackgroundFlags}
|
||||
|
||||
BG_DOWNLOAD=1; { Plugin supports downloads in background }
|
||||
|
||||
BG_UPLOAD=2; { Plugin supports uploads in background }
|
||||
|
||||
BG_ASK_USER=4; { Plugin requires separate connection for background transfers -> ask user first }
|
||||
|
||||
type
|
||||
{ Unsigned integer with pointer size }
|
||||
THandle = {$IFDEF CPU64}QWord{$ELSE}LongWord{$ENDIF};
|
||||
|
|
@ -543,6 +555,8 @@ function FsContentGetDefaultViewW(ViewContents,ViewHeaders,ViewWidths,
|
|||
|
||||
ViewOptions:pwidechar;maxlen:integer):bool; {$IFDEF MSWINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
|
||||
|
||||
function FsGetBackgroundFlags:integer; {$IFDEF MSWINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
|
||||
|
||||
*)
|
||||
|
||||
implementation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue