|
Quick links:
BoxedApp Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
BoxedApp Packer Help >> Plugin API >> Functions BoxedAppSDK_CreateVirtualFileBasedOnIStream
Description
Creates a virtual file based on IStream. The parameters are the same as in standard winapi CreateFile function. There are ANSI and UNICODE versions (BoxedAppSDK_CreateVirtualFileA and BoxedAppSDK_CreateVirtualFileW). Syntax
[ C++ ]
HANDLE BoxedAppSDK_CreateVirtualFileBasedOnIStream( LPCTSTR szPath, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile, LPSTREAM pStream );
[ Delphi ]
function BoxedAppSDK_CreateVirtualFileBasedOnIStream(
lpFileName: PAnsiChar;
dwDesiredAccess, dwShareMode: Integer;
lpSecurityAttributes: PSecurityAttributes;
dwCreationDisposition, dwFlagsAndAttributes: DWORD;
hTemplateFile: THandle;
pStream: IStream): THandle; stdcall;
Quick links:
BoxedApp Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
|