|
Quick links:
BoxedApp Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
BoxedApp SDK Help >> Functions 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. There are ANSI and UNICODE versions (BoxedAppSDK_CreateVirtualDirectoryA and BoxedAppSDK_CreateVirtualDirectoryW). Syntax
[ C++ ]
BOOL __stdcall BoxedAppSDK_CreateVirtualDirectory( LPCTSTR lpPathName, LPSECURITY_ATTRIBUTES lpSecurityAttributes );
[ Delphi ]
function BoxedAppSDK_CreateVirtualDirectory(
lpPathName: PAnsiChar;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;{$IFNDEF BOXEDAPP_SDK_USE_DLL}external;{$ENDIF}
function BoxedAppSDK_CreateVirtualDirectoryA(
lpPathName: PAnsiChar;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;{$IFNDEF BOXEDAPP_SDK_USE_DLL}external;{$ENDIF}
function BoxedAppSDK_CreateVirtualDirectoryW(
lpPathName: PWideChar;
lpSecurityAttributes: PSecurityAttributes): BOOL; stdcall;{$IFNDEF BOXEDAPP_SDK_USE_DLL}external;{$ENDIF}
Quick links:
BoxedApp Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
|