windows-nt/Source/XPSP1/NT/net/config/tools/dllquery/mod.h

21 lines
348 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#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);
};