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.
 
 
 
 
 
 

74 lines
1.9 KiB

/////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1996 Microsoft Corporation
//
// Module Name:
// VerInfo.h
//
// Abstract:
// Definition of the CVersionInfo class.
//
// Implementation File:
// VerInfo.cpp
//
// Author:
// David Potter (davidp) October 11, 1996
//
// Revision History:
//
// Notes:
//
/////////////////////////////////////////////////////////////////////////////
#ifndef _VERINFO_H_
#define _VERINFO_H_
/////////////////////////////////////////////////////////////////////////////
// Include Files
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Forward Class Declarations
/////////////////////////////////////////////////////////////////////////////
class CVersionInfo;
/////////////////////////////////////////////////////////////////////////////
// External Class Declarations
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// CVersionInfo:
/////////////////////////////////////////////////////////////////////////////
class CVersionInfo
{
public:
// Construction
CVersionInfo(void);
~CVersionInfo(void);
// Secondary construction.
void Init(void);
// Operations
public:
LPCTSTR PszQueryValue(IN LPCTSTR pszValueName);
BOOL BQueryValue(
IN LPCTSTR pszValueName,
OUT DWORD & rdwValue
);
const VS_FIXEDFILEINFO * PffiQueryValue(void);
void QueryFileVersionDisplayString(OUT CString & rstrValue);
// Implementation
protected:
LPBYTE m_pbVerInfo;
LPBYTE PbVerInfo(void) { return m_pbVerInfo; }
}; //*** class CVersionInfo
/////////////////////////////////////////////////////////////////////////////
#endif // _VERINFO_H_