|
Quick links:
BoxedApp Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
BoxedApp SDK Help >> Functions BoxedAppSDK_CreateCustomVirtualDirectory
Description
The function creates a virtual directory with the behavior determined by the implementation of the special interface. The arguments of BoxedAppSDK_CreateCustomVirtualDirectory are similar to the arguments of the winapi function CreateDirectory. There are ANSI and UNICODE versions (BoxedAppSDK_CreateCustomVirtualDirectoryA and BoxedAppSDK_CreateCustomVirtualDirectoryW). Syntax
[ C++ ]
BOOL __stdcall BoxedAppSDK_CreateCustomVirtualDirectory( LPCTSTR lpPathName, IBoxedAppVirtualFile* pStorage, LPSECURITY_ATTRIBUTES lpSecurityAttributes );
[ Delphi ]
function BoxedAppSDK_CreateCustomVirtualDirectory(
lpPathName: PAnsiChar;
pStorage: IBoxedAppVirtualFile;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;
function BoxedAppSDK_CreateCustomVirtualDirectoryA(
lpPathName: PAnsiChar;
pStorage: IBoxedAppVirtualFile;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;
function BoxedAppSDK_CreateCustomVirtualDirectoryW(
lpPathName: PWideChar;
pStorage: IBoxedAppVirtualFile;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;
Quick links:
BoxedApp Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
|