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.
29 lines
636 B
29 lines
636 B
// RegInfEntry.h: interface for the CRegInfEntry class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_REGINFENTRY_H__0FD129AE_0503_4265_B3F6_BCD2C4F738FE__INCLUDED_)
|
|
#define AFX_REGINFENTRY_H__0FD129AE_0503_4265_B3F6_BCD2C4F738FE__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CRegInfEntry
|
|
{
|
|
public:
|
|
CRegInfEntry();
|
|
virtual ~CRegInfEntry();
|
|
|
|
TCHAR m_RootName[4];
|
|
LPCTSTR m_SubKeyName;
|
|
LPCTSTR m_ValueName;
|
|
DWORD m_ValueType;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_REGINFENTRY_H__0FD129AE_0503_4265_B3F6_BCD2C4F738FE__INCLUDED_)
|