memory card refactoring
This commit is contained in:
@@ -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
|
||||
*/
|
||||
Reference in New Issue
Block a user