memory card refactoring

This commit is contained in:
Chris Danford
2003-12-17 10:20:53 +00:00
parent 23623a1c64
commit e11afda65a
13 changed files with 531 additions and 307 deletions
@@ -0,0 +1,21 @@
#ifndef MEMORY_CARD_ENUMERATOR_NULL_H
#define MEMORY_CARD_ENUMERATOR_NULL_H 1
#include "MemoryCardDriver.h"
class MemoryCardDriver_Null : public MemoryCardDriver
{
public:
MemoryCardDriver_Null() {};
virtual bool StorageDevicesChanged() { return false; };
virtual void GetStorageDevices( vector<UsbStorageDevice>& vStorageDevicesOut ) {};
virtual bool MountAndTestWrite( UsbStorageDevice* pDevice ) { return false; };
virtual void Unmount( UsbStorageDevice* pDevice ) {};
};
#endif
/*
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
* Chris Danford
*/