add move Linux mem card write test to seprarate thread

This commit is contained in:
Chris Danford
2004-04-13 08:05:50 +00:00
parent 518a749bcf
commit 6f5404c6fe
7 changed files with 445 additions and 12 deletions
@@ -47,8 +47,8 @@ public:
virtual void GetStorageDevices( vector<UsbStorageDevice>& vStorageDevicesOut ) = 0;
virtual bool MountAndTestWrite( UsbStorageDevice* pDevice, CString sMountPoint ) = 0; // return false if mount or write fails
virtual void Unmount( UsbStorageDevice* pDevice, CString sMountPoint ) = 0;
virtual void Flush( UsbStorageDevice* pDevice ) {}
virtual void ResetUsbStorage() {};
virtual void Flush( UsbStorageDevice* pDevice ) = 0;
virtual void ResetUsbStorage() = 0;
};
#endif