33 lines
592 B
C++
33 lines
592 B
C++
#include "stdafx.h"
|
|
#include "SiaDokenDrive.h"
|
|
#include <dokan\dokan.h>
|
|
#include <dokan\fileinfo.h>
|
|
|
|
using namespace Sia::Api;
|
|
using namespace Sia::Api::Dokan;
|
|
|
|
static NTSTATUS DOKAN_CALLBACK _ZwCreateFile(
|
|
LPCWSTR FileName,
|
|
PDOKAN_IO_SECURITY_CONTEXT SecurityContext,
|
|
ACCESS_MASK DesiredAccess,
|
|
ULONG FileAttributes,
|
|
ULONG ShareAccess,
|
|
ULONG CreateDisposition,
|
|
ULONG CreateOptions,
|
|
PDOKAN_FILE_INFO DokanFileInfo)
|
|
{
|
|
}
|
|
|
|
CSiaDokenDrive::CSiaDokenDrive(CSiaApi& siaApi) :
|
|
_siaApi(siaApi)
|
|
{
|
|
}
|
|
|
|
CSiaDokenDrive::~CSiaDokenDrive()
|
|
{
|
|
}
|
|
|
|
void CSiaDokenDrive::InitializeOperations()
|
|
{
|
|
|
|
} |