diff options
| author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
| commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
| tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/auth/Loginbox/loginConfig.h | |
| parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
| parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
| download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz | |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/auth/Loginbox/loginConfig.h')
| -rw-r--r-- | Src/auth/Loginbox/loginConfig.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Src/auth/Loginbox/loginConfig.h b/Src/auth/Loginbox/loginConfig.h new file mode 100644 index 00000000..3e0b487d --- /dev/null +++ b/Src/auth/Loginbox/loginConfig.h @@ -0,0 +1,40 @@ +#ifndef NULLSOFT_AUTH_LOGIN_CONFIG_HEADER +#define NULLSOFT_AUTH_LOGIN_CONFIG_HEADER + +#if defined(_MSC_VER) && (_MSC_VER >= 1020) +#pragma once +#endif + +#include <wtypes.h> + +class LoginConfig +{ +protected: + LoginConfig(); + ~LoginConfig(); +public: + static HRESULT CreateInstance(LoginConfig **instance); + +public: + ULONG AddRef(); + ULONG Release(); + +public: + HRESULT GetPath(LPCSTR *ppPath); + DWORD ReadAnsiStr(LPCSTR lpSectionName, LPCSTR lpKeyName, LPCSTR lpDefault, LPSTR lpReturnedString, DWORD nSize); + UINT ReadInt(LPCSTR lpSectionName, LPCSTR lpKeyName, INT nDefault); + HRESULT WriteAnsiStr(LPCSTR lpSectionName, LPCSTR lpKeyName, LPCSTR lpString); + HRESULT WriteInt(LPCSTR lpSectionName, LPCSTR lpKeyName, INT nValue); + + +protected: + ULONG ref; + LPSTR configPath; + BOOL pathValidated; + void *buffer; + + +}; + + +#endif //NULLSOFT_AUTH_LOGIN_CONFIG_HEADER
\ No newline at end of file |
