Fix UI restore when window is resized while in loading screen
[ryzomcore.git] / nelns / login_system / nel_launcher_windows_ext / Configuration.h
blob6ab16f30862acee16ea5259f04170cf8a02561c6
1 // Configuration.h: interface for the CConfiguration class.
2 //
3 //////////////////////////////////////////////////////////////////////
5 #if !defined(AFX_CONFIGURATION_H__F92DFBDE_7EE5_4077_8D8D_ADDCBE3C302E__INCLUDED_)
6 #define AFX_CONFIGURATION_H__F92DFBDE_7EE5_4077_8D8D_ADDCBE3C302E__INCLUDED_
8 #if _MSC_VER > 1000
9 #pragma once
10 #endif // _MSC_VER > 1000
12 class CConfiguration
14 public:
15 CConfiguration();
16 virtual ~CConfiguration();
17 BOOL Load();
18 BOOL GetValue(CString& csBuffer, CString csKey, CString& csValue, int iIndex = 0);
20 public:
21 CString m_csHost;
22 double m_dVersion;
23 CString m_csUrlMain;
24 CString m_csUrlRN;
25 CString m_csUrlNews;
26 CString m_csApp;
27 CString m_csExe;
28 CString m_csBasePath;
29 CString m_csAppBasePath;
31 private:
32 void LoadFromResource();
35 #endif // !defined(AFX_CONFIGURATION_H__F92DFBDE_7EE5_4077_8D8D_ADDCBE3C302E__INCLUDED_)