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

20 lines
226 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
#pragma once
// NT's PE file
//
class CPeImage
{
public:
HANDLE m_hFile;
HANDLE m_hMapping;
PVOID m_pvImage;
public:
HRESULT
HrOpenFile (
IN PCSTR pszFileName);
VOID
CloseFile ();
};