Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
348 B

#pragma once
class CModule
{
public:
// The names of the file. Does not include any path information.
//
PSTR m_pszFileName;
// The size of the file.
//
ULONG m_cbFileSize;
public:
static HRESULT
HrCreateInstance (
IN PCSTR pszFileName,
IN ULONG cbFileSize,
OUT CModule** ppMod);
};