mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
05a5575ff1
svn path=/trunk/; revision=1822
23 lines
618 B
C++
23 lines
618 B
C++
/* $Id: Settings.h,v 1.2 2001/04/24 22:53:00 narnaoud Exp $ */
|
|
|
|
#ifndef OPTIONS_H__a7382d2d_96b4_4472_974d_801281bd5327___INCLUDED
|
|
#define OPTIONS_H__a7382d2d_96b4_4472_974d_801281bd5327___INCLUDED
|
|
|
|
class CSettings
|
|
{
|
|
public:
|
|
CSettings();
|
|
~CSettings();
|
|
HRESULT Load(LPCTSTR pszLoadKey);
|
|
HRESULT Store(LPCTSTR pszStoreKey);
|
|
LPCTSTR GetPrompt();
|
|
WORD GetNormalTextAttributes();
|
|
WORD GetCommandTextAttributes();
|
|
private:
|
|
HRESULT Clean();
|
|
LPTSTR m_pszPrompt;
|
|
WORD m_wNormalTextAttributes;
|
|
WORD m_wCommandTextAttributes;
|
|
};
|
|
|
|
#endif // #ifndef OPTIONS_H__a7382d2d_96b4_4472_974d_801281bd5327___INCLUDED
|