2004-04-13 08:05:50 +00:00
|
|
|
#ifndef MemoryCardDriverThreaded_Linux_H
|
|
|
|
|
#define MemoryCardDriverThreaded_Linux_H 1
|
|
|
|
|
|
|
|
|
|
#include "MemoryCardDriverThreaded.h"
|
|
|
|
|
|
|
|
|
|
class MemoryCardDriverThreaded_Linux : public MemoryCardDriverThreaded
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MemoryCardDriverThreaded_Linux();
|
|
|
|
|
|
|
|
|
|
virtual void Unmount( UsbStorageDevice* pDevice, CString sMountPoint );
|
|
|
|
|
virtual void Flush( UsbStorageDevice* pDevice );
|
|
|
|
|
virtual void ResetUsbStorage();
|
|
|
|
|
protected:
|
|
|
|
|
virtual void MountThreadMain();
|
|
|
|
|
virtual void Mount( UsbStorageDevice* pDevice, CString sMountPoint );
|
2004-05-03 00:35:53 +00:00
|
|
|
|
|
|
|
|
bool m_bReset;
|
2004-04-13 08:05:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
|
|
|
|
|
* Chris Danford
|
|
|
|
|
*/
|