2010-04-25 00:31:27 +00:00
|
|
|
/*
|
2009-02-09 21:15:56 +00:00
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
* http://www.gabest.org
|
|
|
|
*
|
|
|
|
* This Program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* This Program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
2010-04-25 00:31:27 +00:00
|
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
2009-02-09 21:15:56 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "GSdx.h"
|
|
|
|
|
2009-06-03 12:09:04 +00:00
|
|
|
static HMODULE s_hModule;
|
|
|
|
|
|
|
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
|
|
|
|
{
|
|
|
|
switch(ul_reason_for_call)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
s_hModule = hModule;
|
|
|
|
case DLL_THREAD_ATTACH:
|
|
|
|
case DLL_THREAD_DETACH:
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-18 11:08:04 +00:00
|
|
|
GSdxApp theApp;
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-12-19 18:30:56 +00:00
|
|
|
std::string GSdxApp::m_ini( "inis/GSdx.ini" );
|
2009-06-03 12:09:04 +00:00
|
|
|
const char* GSdxApp::m_section = "Settings";
|
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
GSdxApp::GSdxApp()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-06-03 12:09:04 +00:00
|
|
|
HMODULE GSdxApp::GetModuleHandle()
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2009-06-03 12:09:04 +00:00
|
|
|
return s_hModule;
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
2009-12-19 18:30:56 +00:00
|
|
|
void GSdxApp::SetConfigDir(const char* dir)
|
|
|
|
{
|
|
|
|
if( dir == NULL )
|
|
|
|
{
|
|
|
|
m_ini = "inis/GSdx.ini";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_ini = dir;
|
|
|
|
|
|
|
|
if((m_ini[m_ini.length()-1] != '/') && (m_ini[m_ini.length()-1] != '\\'))
|
|
|
|
{
|
|
|
|
m_ini += '\\';
|
|
|
|
}
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-12-19 18:30:56 +00:00
|
|
|
m_ini += "GSdx.ini";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-18 11:08:04 +00:00
|
|
|
string GSdxApp::GetConfig(const char* entry, const char* value)
|
|
|
|
{
|
2009-06-03 12:09:04 +00:00
|
|
|
char buff[4096] = {0};
|
2009-12-19 18:30:56 +00:00
|
|
|
GetPrivateProfileString(m_section, entry, value, buff, countof(buff), m_ini.c_str());
|
2009-06-03 12:09:04 +00:00
|
|
|
return string(buff);
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GSdxApp::SetConfig(const char* entry, const char* value)
|
|
|
|
{
|
2009-12-19 18:30:56 +00:00
|
|
|
WritePrivateProfileString(m_section, entry, value, m_ini.c_str());
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int GSdxApp::GetConfig(const char* entry, int value)
|
|
|
|
{
|
2009-12-19 18:30:56 +00:00
|
|
|
return GetPrivateProfileInt(m_section, entry, value, m_ini.c_str());
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GSdxApp::SetConfig(const char* entry, int value)
|
|
|
|
{
|
2009-06-03 12:09:04 +00:00
|
|
|
char buff[32] = {0};
|
|
|
|
itoa(value, buff, 10);
|
|
|
|
SetConfig(entry, buff);
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|