blob: 4a44d97ec06fa4c4ef79d7a436acdb2830bbe16d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// MiniVersion.h Version 1.1
//
// Author: Hans Dietrich
// hdietrich2@hotmail.com
//
// This software is released into the public domain.
// You are free to use it in any way you like, except
// that you may not sell this source code.
//
// This software is provided "as is" with no expressed
// or implied warranty. I accept no liability for any
// damage or loss of business that this software may cause.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef MINIVERSION_H
#define MINIVERSION_H
#include <windows.h>
#include <TCHAR.h>
class CMiniVersion
{
// constructors
public:
CMiniVersion(LPCTSTR lpszPath = NULL);
BOOL Init();
void Release();
// operations
public:
// attributes
public:
// fixed info
BOOL GetFileVersion(WORD *pwVersion);
BOOL GetProductVersion(WORD* pwVersion);
BOOL GetFileFlags(DWORD& rdwFlags);
BOOL GetFileOS(DWORD& rdwOS);
BOOL GetFileType(DWORD& rdwType);
BOOL GetFileSubtype(DWORD& rdwType);
// string info
BOOL GetCompanyName(LPTSTR lpszCompanyName, int nSize);
BOOL GetFileDescription(LPTSTR lpszFileDescription, int nSize);
BOOL GetProductName(LPTSTR lpszProductName, int nSize);
// implementation
protected:
BOOL GetFixedInfo(VS_FIXEDFILEINFO& rFixedInfo);
BOOL GetStringInfo(LPCTSTR lpszKey, LPTSTR lpszValue, unsigned int cchBuffer);
BYTE* m_pData;
DWORD m_dwHandle;
WORD m_wFileVersion[4];
WORD m_wProductVersion[4];
DWORD m_dwFileFlags;
DWORD m_dwFileOS;
DWORD m_dwFileType;
DWORD m_dwFileSubtype;
TCHAR m_szPath[MAX_PATH*2];
TCHAR m_szCompanyName[MAX_PATH*2];
TCHAR m_szProductName[MAX_PATH*2];
TCHAR m_szFileDescription[MAX_PATH*2];
};
///////////////////////////////////////////////////////////////////////////////
#endif
|