windows-nt/Source/XPSP1/NT/net/config/tools/dllquery/mod.h
2020-09-26 16:20:57 +08:00

21 lines
348 B
C++

#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);
};