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/Plugins/Library/ml_disc/config.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/Plugins/Library/ml_disc/config.h')
-rw-r--r-- | Src/Plugins/Library/ml_disc/config.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Src/Plugins/Library/ml_disc/config.h b/Src/Plugins/Library/ml_disc/config.h new file mode 100644 index 00000000..6ec17685 --- /dev/null +++ b/Src/Plugins/Library/ml_disc/config.h @@ -0,0 +1,44 @@ +#ifndef _C_CONFIG_H_ +#define _C_CONFIG_H_ + +#if defined(_MSC_VER) && (_MSC_VER >= 1020) +#pragma once +#endif + +#define C_CONFIG_WIN32NATIVE +#include <windows.h> + +class C_Config +{ + public: + C_Config(LPCTSTR pszIniFile); + ~C_Config(); + + void WriteIntEx(LPCTSTR pszSection, LPCTSTR pszKey, int nValue); + void WriteStringEx(LPCTSTR pszSection, LPCTSTR pszKey, LPCTSTR pszValue); + int ReadIntEx(LPCTSTR pszSection, LPCTSTR pszKey, int nDefault); + LPTSTR ReadCchStringEx(LPTSTR pszBuffer, INT cchBuffer, LPCTSTR pszSection, LPCTSTR pszKey, LPCTSTR pszDefault); + LPTSTR ReadCbStringEx(LPTSTR pszBuffer, INT cbBuffer, LPCTSTR pszSection, LPCTSTR pszKey, LPCTSTR pszDefault); + DWORD GetStringEx(LPCTSTR pszSection, LPCTSTR pszKey, LPCTSTR pszDefault, LPTSTR pszReturnedValue, DWORD nSize); + + void WriteBoolEx(LPCTSTR pszSection, LPCTSTR pszKey, int nValue) { WriteIntEx(pszSection, pszKey, ( 0 != nValue)); } + BOOL ReadBoolEx(LPCTSTR pszSection, LPCTSTR pszKey, int nDefault) { return (0 != ReadIntEx(pszSection, pszKey, nDefault)); } + + LPTSTR ReadCchQuotedString(LPTSTR pszBuffer, INT cchBuffer, LPCTSTR pszSection, LPCTSTR pszKey, LPCTSTR pszDefault); + LPTSTR ReadCbQuotedString(LPTSTR pszBuffer, INT cbBuffer, LPCTSTR pszSection, LPCTSTR pszKey, LPCTSTR pszDefault); + void WriteQuotedString(LPCTSTR pszSection, LPCTSTR pszKey, LPCTSTR pszValue); + + void WriteInt(LPCTSTR pszKey, int nValue); + void WriteString(LPCTSTR pszKey, LPCTSTR pszValue); + int ReadInt(LPCTSTR pszKey, int nDefault); + LPCTSTR ReadString(LPCTSTR pszKey, LPCTSTR pszDefault); + DWORD GetString(LPCTSTR pszKey, LPCTSTR pszDefault, LPTSTR pszReturnedValue, DWORD nSize); + + void WriteBool(LPCTSTR pszKey, int nValue) { WriteInt(pszKey, ( 0 != nValue)); } + BOOL ReadBool(LPCTSTR pszKey, int nDefault) { return (0 != ReadInt(pszKey, nDefault)); } + + private: + TCHAR *m_inifile; +}; + +#endif//_C_CONFIG_H_ |