1
0
This repository has been archived on 2025-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
siadrive/SiaDrive.Dokan.Api/SiaDokenDrive.cpp
Scott E. Graves 25bb8b7cc9 Dokan api
2017-02-10 15:09:24 -06:00

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()
{
}