/*------------------------------------------------*\
*
*Copyright (c) 1997 Microsoft Corporation
*
*Module Name:
*
*regkeyex.cpp
*
*Abstract:
*
*Declaration of CRegKeyEx class
*
\*------------------------------------------------*/
#ifndef __REGKEYEX_H__
#define __REGKEYEX_H__
#include "atlbase.h"
class CRegKeyEx : public CRegKey
{
public:
//Add String QueryValue
LONG QueryValue(LPTSTR tsBuffer,
DWORD *pdwBufLen,
LPCTSTR tsValueName);
};
#endif __REGKEYEX_H__