1
0

Fixed spelling

This commit is contained in:
Scott E. Graves
2017-02-10 19:11:06 -06:00
parent b471f48706
commit 6cbfd920c7
4 changed files with 15 additions and 15 deletions

View File

@@ -0,0 +1,38 @@
#pragma once
#include <SiaApi.h>
#include <mutex>
NS_BEGIN(Sia)
NS_BEGIN(Api)
NS_BEGIN(Dokan)
class SiaDokanDriveException :
std::exception
{
public:
SiaDokanDriveException(char* message) :
std::exception(message)
{
}
};
class AFX_EXT_CLASS CSiaDokanDrive
{
public:
// throws SiaDokenDriveException
CSiaDokanDrive(CSiaApi& siaApi);
public:
~CSiaDokanDrive();
private:
CSiaApi& _siaApi;
public:
void Mount(const wchar_t& driveLetter);
void Unmount( );
};
NS_END(3)