From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Plugins/Library/ml_disc/drives.h | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Src/Plugins/Library/ml_disc/drives.h (limited to 'Src/Plugins/Library/ml_disc/drives.h') diff --git a/Src/Plugins/Library/ml_disc/drives.h b/Src/Plugins/Library/ml_disc/drives.h new file mode 100644 index 00000000..4984607e --- /dev/null +++ b/Src/Plugins/Library/ml_disc/drives.h @@ -0,0 +1,44 @@ +#ifndef NULLSOFT_DRIVEINFO_HEADER +#define NULLSOFT_DRIVEINFO_HEADER + +#include "../nu/Map.h" +#include ".\discinfo.h" + + +typedef struct +{ + wchar_t letter; + int typeCode; + wchar_t* modelInfo; + int busType; + int *pTypeList; // all supported types + int nTypeList; // number of supported tpyes + DiscInfo *disc; // inserted disc info; +} OPTICAL_DRIVE; + +#define MAX_FORMAT_DRIVE_STRING 512 + +class Drives +{ +public: + Drives(void); + ~Drives(void); + +public: + void AddDrive(wchar_t letter, unsigned int typeCode, wchar_t* description, const wchar_t *extInfo); + void Clear(void); + unsigned int GetCount(void); + const OPTICAL_DRIVE* GetFirst(void); + const OPTICAL_DRIVE* GetNext(void); // if returns NULL - means no more + + static BOOL IsRecorder(const OPTICAL_DRIVE *drive); + + static const wchar_t* GetTypeString(int typeCode); + static const wchar_t* GetBusString(int busCode); + static const wchar_t* GetFormatedString(const OPTICAL_DRIVE *drv, wchar_t *buffer, size_t size, BOOL useFullName = TRUE); +private: + Map driveList; + Map::const_iterator c_iter; +}; + +#endif //NULLSOFT_DRIVEINFO_HEADER \ No newline at end of file -- cgit