BoxedAppSDK_CreateVirtualDirectory
Description
The function creates a virtual directory with the contents located in the shared memory. The arguments of BoxedAppSDK_CreateVirtualDirectory are similar to the arguments of the winapi function CreateDirectory.
Syntax
C++
BOOL __stdcall BoxedAppSDK_CreateVirtualDirectory(
LPCTSTR lpPathName,
LPSECURITY_ATTRIBUTES lpSecurityAttributes);
Delphi
function BoxedAppSDK_CreateVirtualDirectory(
lpPathName: PAnsiChar;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;
function BoxedAppSDK_CreateVirtualDirectoryA(
lpPathName: PAnsiChar;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;
function BoxedAppSDK_CreateVirtualDirectoryW(
lpPathName: PWideChar;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;
Parameters
lpPathName
The name, relative or full path of the virtual directory to be created.
lpSecurityAttributes
A pointer to a SECURITY_ATTRIBUTES structure that optionally specifies security descriptor, and whether the file handle can be inherited by child processes. It's ignored by BoxedApp currently.