Thread: plugin support
View Single Post
Old 11-21-2004, 09:55 AM  
Tentacle
Junior Member
 
Join Date: Nov 2004
Posts: 5
Default plugin support

it would be cool if flash fxp would load a user dll to allow me to script transfers
the dll needs to get called once for every transfer so that it can allow/deny it, and also every 10mins to allow for status updates

it needs function pointers for queue management

like this:
functions loaded from dll:
bool bUserAllowTransfer( char *from, char *to );
void vUserTimer();

functions exported to dll:
void vAddTransferToQueue( char *from, char *to );
int iGetQueueLength();
char *pGetQueueEntry( int id ); //returns filename
void vRemoveTransferFromQueue( int id );


then we could code some cool plugins, like the only one sfv per directory thingy,
or in my case i could link flashfxp to my mysql database
Tentacle is offline