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
|