Leaked source code of windows server 2003
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.
 
 
 
 
 
 

28 lines
635 B

// File: pfnver.h
#ifndef _PFNVER_H_
#define _PFNVER_H_
// from version.dll
typedef DWORD (WINAPI * PFN_GETVERINFOSIZE) (LPTSTR, LPDWORD);
typedef BOOL (WINAPI * PFN_GETVERINFO) (LPTSTR, DWORD, DWORD, LPVOID);
typedef BOOL (WINAPI * PFN_VERQUERYVAL) (const LPVOID, LPTSTR, LPVOID *, PUINT);
class DLLVER
{
private:
static HINSTANCE m_hInstance;
protected:
DLLVER() {};
~DLLVER() {};
public:
static HRESULT Init(void);
static PFN_GETVERINFOSIZE GetFileVersionInfoSize;
static PFN_GETVERINFO GetFileVersionInfo;
static PFN_VERQUERYVAL VerQueryValue;
};
#endif /* _PFNVER_H_ */