Convert HexTray to the plugin config API
This commit is contained in:
parent
9a57ca41b1
commit
15c2ff2d54
|
@ -21,14 +21,14 @@
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<PlatformToolset>WDK7</PlatformToolset>
|
<PlatformToolset>WDK7</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<PlatformToolset>WDK7</PlatformToolset>
|
<PlatformToolset>WDK7</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
|
|
@ -75,15 +75,42 @@ int xchat_plugin_init(xchat_plugin *plugin_handle, char **plugin_name, char **pl
|
||||||
|
|
||||||
*plugin_name = "HexTray";
|
*plugin_name = "HexTray";
|
||||||
*plugin_desc = "Minimize HexChat to the Windows system tray";
|
*plugin_desc = "Minimize HexChat to the Windows system tray";
|
||||||
*plugin_version = "1.2.4";
|
*plugin_version = "1.3.0";
|
||||||
|
|
||||||
|
char buffer[256];
|
||||||
|
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
/************************* Load our preferances from xTray.ini *************************************************************/
|
/************************* Initialize our preferences if they don't exist yet **********************************************/
|
||||||
|
/***************************************************************************************************************************/
|
||||||
|
|
||||||
|
if (xchat_pluginpref_get_int (ph, "settings") == -1)
|
||||||
|
{
|
||||||
|
xchat_pluginpref_set_int (ph, "settings", HT_DEF_SET);
|
||||||
|
}
|
||||||
|
if (xchat_pluginpref_get_int (ph, "aot") == -1)
|
||||||
|
{
|
||||||
|
xchat_pluginpref_set_int (ph, "aot", HT_DEF_AOT);
|
||||||
|
}
|
||||||
|
if (xchat_pluginpref_get_int (ph, "key") == -1)
|
||||||
|
{
|
||||||
|
xchat_pluginpref_set_int (ph, "key", HT_DEF_KEY);
|
||||||
|
}
|
||||||
|
if (xchat_pluginpref_get_int (ph, "mod") == -1)
|
||||||
|
{
|
||||||
|
xchat_pluginpref_set_int (ph, "mod", HT_DEF_MOD);
|
||||||
|
}
|
||||||
|
if (xchat_pluginpref_get_str (ph, "away", buffer) == 0)
|
||||||
|
{
|
||||||
|
xchat_pluginpref_set_str (ph, "away", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************************************************************************************************************************/
|
||||||
|
/************************* Load our preferences ****************************************************************************/
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
LoadPrefs();
|
LoadPrefs();
|
||||||
|
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
/************************* Finds the xChat window and saves it for later use ***********************************************/
|
/************************* Finds the HexChat window and saves it for later use *********************************************/
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
g_hXchatWnd = (HWND)xchat_get_info(ph, "win_ptr");
|
g_hXchatWnd = (HWND)xchat_get_info(ph, "win_ptr");
|
||||||
|
|
||||||
|
@ -96,7 +123,7 @@ int xchat_plugin_init(xchat_plugin *plugin_handle, char **plugin_name, char **pl
|
||||||
SetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC, (LONG_PTR)WindowProc);
|
SetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC, (LONG_PTR)WindowProc);
|
||||||
|
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
/************************* Grab the xChat Icon, Load our menu, create the window to receive the hotkey messages ***********/
|
/************************* Grab the HexChat Icon, Load our menu, create the window to receive the hotkey messages *********/
|
||||||
/************************* and register the windows message so we know if explorer crashes ***********/
|
/************************* and register the windows message so we know if explorer crashes ***********/
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
g_hTrayMenu = GetSubMenu(LoadMenu((HINSTANCE)g_hInstance, MAKEINTRESOURCE(IDR_TRAY_MENU)), 0);
|
g_hTrayMenu = GetSubMenu(LoadMenu((HINSTANCE)g_hInstance, MAKEINTRESOURCE(IDR_TRAY_MENU)), 0);
|
||||||
|
|
|
@ -19,6 +19,12 @@
|
||||||
#ifndef _XTRAY_H
|
#ifndef _XTRAY_H
|
||||||
#define _XTRAY_H
|
#define _XTRAY_H
|
||||||
|
|
||||||
|
/******************** Default settings*****************/
|
||||||
|
#define HT_DEF_SET 13814
|
||||||
|
#define HT_DEF_AOT 5
|
||||||
|
#define HT_DEF_KEY 84
|
||||||
|
#define HT_DEF_MOD 6
|
||||||
|
|
||||||
/******************** Globals *************************/
|
/******************** Globals *************************/
|
||||||
extern HWND g_hXchatWnd;
|
extern HWND g_hXchatWnd;
|
||||||
extern HWND g_hHotkeyWnd;
|
extern HWND g_hHotkeyWnd;
|
||||||
|
|
|
@ -20,13 +20,13 @@
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
|
|
@ -97,7 +97,7 @@ BEGIN
|
||||||
15,103,64,33
|
15,103,64,33
|
||||||
GROUPBOX "Special Thanks To:",IDC_STATIC,3,91,89,50
|
GROUPBOX "Special Thanks To:",IDC_STATIC,3,91,89,50
|
||||||
GROUPBOX "Version Information:",IDC_STATIC,101,92,109,49
|
GROUPBOX "Version Information:",IDC_STATIC,101,92,109,49
|
||||||
LTEXT "1.2.4",IDC_STATIC,170,105,33,8,0,WS_EX_RIGHT
|
LTEXT "1.3.0",IDC_STATIC,170,105,33,8,0,WS_EX_RIGHT
|
||||||
LTEXT "Compiled In: ",IDC_STATIC,110,117,54,8
|
LTEXT "Compiled In: ",IDC_STATIC,110,117,54,8
|
||||||
LTEXT "2012",IDC_STATIC,170,117,33,8,0,WS_EX_RIGHT
|
LTEXT "2012",IDC_STATIC,170,117,33,8,0,WS_EX_RIGHT
|
||||||
LTEXT "Version Number:",IDC_STATIC,110,105,54,8
|
LTEXT "Version Number:",IDC_STATIC,110,105,54,8
|
||||||
|
|
|
@ -75,95 +75,11 @@ WORD ModToHotkeyf(WORD modifiers)
|
||||||
|
|
||||||
void SavePrefs(int iDlg)
|
void SavePrefs(int iDlg)
|
||||||
{
|
{
|
||||||
/**************************************************************************************************/
|
xchat_pluginpref_set_int (ph, "settings", g_dwPrefs);
|
||||||
/********** allocate space for our string, and then set it to the currently logged on user ********/
|
xchat_pluginpref_set_int (ph, "aot", g_iTime);
|
||||||
/**************************************************************************************************/
|
xchat_pluginpref_set_int (ph, "key", g_hHotKey.key);
|
||||||
DWORD dBuff = 257;
|
xchat_pluginpref_set_int (ph, "mod", g_hHotKey.mod);
|
||||||
TCHAR szUser[257];
|
xchat_pluginpref_set_str (ph, "away", (const char*) g_szAway);
|
||||||
|
|
||||||
GetUserName(szUser, &dBuff);
|
|
||||||
|
|
||||||
/**************************************************************************************************/
|
|
||||||
/*********************** Test if the file exists, If it doesn't, Create It ************************/
|
|
||||||
/**************************************************************************************************/
|
|
||||||
TCHAR XTRAY_INI_FILE[1024];
|
|
||||||
|
|
||||||
#ifdef UNICODE
|
|
||||||
char temp[1024];
|
|
||||||
TCHAR TEMP_INI_FILE[1024];
|
|
||||||
|
|
||||||
_snprintf(temp, 1024, "%s\\addon_hextray.conf", xchat_get_info(ph, "xchatdir"));
|
|
||||||
ConvertString(temp, TEMP_INI_FILE, 1024);
|
|
||||||
|
|
||||||
// ok this one is really ugly
|
|
||||||
// it checks to see if the file exists in two locations
|
|
||||||
// HexChat default config dir, if that fails it tries hexchat\plugins\config
|
|
||||||
// if neither one exists it tries to create it in
|
|
||||||
// HexChat default config dir, if that fails it tries hexchat\plugins\config
|
|
||||||
// In either case it writes \xFF\xFE to the file ( on creation )
|
|
||||||
// so that we can save unicode away messages WritePrivateProfile doesn't
|
|
||||||
// do this for us, though I think it really should
|
|
||||||
|
|
||||||
if(FileExists(TEMP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, TEMP_INI_FILE);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if(FileExists(BACKUP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, BACKUP_INI_FILE);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
HANDLE xTemp;
|
|
||||||
DWORD dwBytesTemp;
|
|
||||||
|
|
||||||
if(xTemp = CreateFile(TEMP_INI_FILE, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL))
|
|
||||||
{
|
|
||||||
if(GetLastError() != ERROR_ALREADY_EXISTS)
|
|
||||||
{
|
|
||||||
WriteFile(xTemp, _T("\xFF\xFE"), 4, &dwBytesTemp, NULL);
|
|
||||||
}
|
|
||||||
CloseHandle(xTemp);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(FileExists(TEMP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, TEMP_INI_FILE);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
HANDLE xBackup;
|
|
||||||
DWORD dwBytesBackup;
|
|
||||||
|
|
||||||
if(xBackup = CreateFile(TEMP_INI_FILE, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL))
|
|
||||||
{
|
|
||||||
if(GetLastError() != ERROR_ALREADY_EXISTS)
|
|
||||||
{
|
|
||||||
WriteFile(xBackup, _T("\xFF\xFE"), 4, &dwBytesBackup, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
CloseHandle(xBackup);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(FileExists(BACKUP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, BACKUP_INI_FILE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
_tcscpy(XTRAY_INI_FILE, BACKUP_INI_FILE);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
WritePrivateProfileInt(szUser, _T("SETTINGS"), g_dwPrefs, XTRAY_INI_FILE);
|
|
||||||
WritePrivateProfileInt(szUser, _T("AOT"), g_iTime, XTRAY_INI_FILE);
|
|
||||||
WritePrivateProfileInt(szUser, _T("KEY"), g_hHotKey.key, XTRAY_INI_FILE);
|
|
||||||
WritePrivateProfileInt(szUser, _T("MOD"), g_hHotKey.mod, XTRAY_INI_FILE);
|
|
||||||
WritePrivateProfileString(szUser, _T("AWAY"), g_szAway, XTRAY_INI_FILE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LoadPrefs()
|
void LoadPrefs()
|
||||||
|
@ -171,115 +87,17 @@ void LoadPrefs()
|
||||||
/**************************************************************************************************/
|
/**************************************************************************************************/
|
||||||
/*********************** Our Settings Section *****************************************************/
|
/*********************** Our Settings Section *****************************************************/
|
||||||
/**************************************************************************************************/
|
/**************************************************************************************************/
|
||||||
DWORD dBuff = 257;
|
|
||||||
TCHAR szUser[257];
|
|
||||||
|
|
||||||
GetUserName(szUser, &dBuff);
|
|
||||||
|
|
||||||
/**************************************************************************************************/
|
|
||||||
/*********************** Test if the file exists, If it doesn't, Create It ************************/
|
|
||||||
/**************************************************************************************************/
|
|
||||||
TCHAR XTRAY_INI_FILE[1024];
|
|
||||||
|
|
||||||
#ifdef UNICODE
|
|
||||||
char temp[1024];
|
|
||||||
TCHAR TEMP_INI_FILE[1024];
|
|
||||||
|
|
||||||
_snprintf(temp, 1024, "%s\\addon_hextray.conf", xchat_get_info(ph, "xchatdir"));
|
|
||||||
ConvertString(temp, TEMP_INI_FILE, 1024);
|
|
||||||
|
|
||||||
if(FileExists(TEMP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, TEMP_INI_FILE);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if(FileExists(BACKUP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, BACKUP_INI_FILE);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
HANDLE xTemp;
|
|
||||||
DWORD dwBytesTemp;
|
|
||||||
|
|
||||||
if(xTemp = CreateFile(TEMP_INI_FILE, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL))
|
|
||||||
{
|
|
||||||
if(GetLastError() != ERROR_ALREADY_EXISTS)
|
|
||||||
{
|
|
||||||
WriteFile(xTemp, _T("\xFF\xFE"), 4, &dwBytesTemp, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
CloseHandle(xTemp);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(FileExists(TEMP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, TEMP_INI_FILE);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
HANDLE xBackup;
|
|
||||||
DWORD dwBytesBackup;
|
|
||||||
|
|
||||||
if(xBackup = CreateFile(TEMP_INI_FILE, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL))
|
|
||||||
{
|
|
||||||
if(GetLastError() != ERROR_ALREADY_EXISTS)
|
|
||||||
{
|
|
||||||
WriteFile(xBackup, _T("\xFF\xFE"), 4, &dwBytesBackup, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
CloseHandle(xBackup);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(FileExists(BACKUP_INI_FILE))
|
|
||||||
{
|
|
||||||
_tcscpy(XTRAY_INI_FILE, BACKUP_INI_FILE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
_tcscpy(XTRAY_INI_FILE, BACKUP_INI_FILE);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**************************************************************************************************/
|
/**************************************************************************************************/
|
||||||
/*************************** Get the value for each of our preferances ****************************/
|
/*************************** Get the value for each of our preferances ****************************/
|
||||||
/**************************************************************************************************/
|
/**************************************************************************************************/
|
||||||
g_dwPrefs = GetPrivateProfileInt(szUser, _T("SETTINGS"), 0, XTRAY_INI_FILE);
|
|
||||||
|
|
||||||
// backwards compatability
|
g_dwPrefs = xchat_pluginpref_get_int (ph, "settings");
|
||||||
// also allows us to set defaults if its a new installation
|
g_iTime = xchat_pluginpref_get_int (ph, "aot");
|
||||||
// disable topic change, channel message and server notice by default
|
g_hHotKey.key = xchat_pluginpref_get_int (ph, "key");
|
||||||
if(g_dwPrefs == 0)
|
g_hHotKey.mod = xchat_pluginpref_get_int (ph, "mod");
|
||||||
{
|
xchat_pluginpref_get_str (ph, "away", (char *) g_szAway);
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("HILIGHT"), 1, XTRAY_INI_FILE)<<1);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("INVITE"), 1, XTRAY_INI_FILE)<<2);
|
|
||||||
/* g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("TOPIC"), 1, XTRAY_INI_FILE)<<3); */
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("BANNED"), 1, XTRAY_INI_FILE)<<4);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("KICKED"), 1, XTRAY_INI_FILE)<<5);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("CTCP"), 1, XTRAY_INI_FILE)<<6);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("PMSG"), 1, XTRAY_INI_FILE)<<7);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("KILLED"), 1, XTRAY_INI_FILE)<<8);
|
|
||||||
/* g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("NOTICE"), 1, XTRAY_INI_FILE)<<9); */
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("DISCONNECT"), 1, XTRAY_INI_FILE)<<10);
|
|
||||||
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("AOM"), 0, XTRAY_INI_FILE)<<11);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("TOT"), 1, XTRAY_INI_FILE)<<12);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("AMAE"), 1, XTRAY_INI_FILE)<<13);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("OSBWM"), 0, XTRAY_INI_FILE)<<14);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("UWIOB"), 0, XTRAY_INI_FILE)<<15);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("KAOI"), 0, XTRAY_INI_FILE)<<16);
|
|
||||||
g_dwPrefs |= (GetPrivateProfileInt(szUser, _T("MIOC"), 0, XTRAY_INI_FILE)<<17);
|
|
||||||
}
|
|
||||||
|
|
||||||
g_hHotKey.key = GetPrivateProfileInt(szUser, _T("KEY"), 84, XTRAY_INI_FILE);
|
|
||||||
g_hHotKey.mod = GetPrivateProfileInt(szUser, _T("MOD"), (MOD_CONTROL | MOD_SHIFT), XTRAY_INI_FILE);
|
|
||||||
g_iTime = GetPrivateProfileInt(szUser, _T("AOT"), 5, XTRAY_INI_FILE);
|
|
||||||
|
|
||||||
GetPrivateProfileString(szUser, _T("AWAY"), _T(""), g_szAway, 1024, XTRAY_INI_FILE);
|
|
||||||
|
|
||||||
/**************************************************************************************************/
|
/**************************************************************************************************/
|
||||||
/******************************** Register our hotkey with windows ********************************/
|
/******************************** Register our hotkey with windows ********************************/
|
||||||
/**************************************************************************************************/
|
/**************************************************************************************************/
|
||||||
|
@ -519,20 +337,6 @@ int SetOption(HWND hDialog, unsigned int uiCheckBox, unsigned int uiPref)
|
||||||
return (g_dwPrefs & (1<<uiPref));
|
return (g_dwPrefs & (1<<uiPref));
|
||||||
}
|
}
|
||||||
|
|
||||||
int WritePrivateProfileIntA(char *szSection, char *szItem, int iData, char *szPath)
|
|
||||||
{
|
|
||||||
char szData[33];
|
|
||||||
itoa(iData, szData, 10);
|
|
||||||
return WritePrivateProfileStringA(szSection, szItem, szData, szPath);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WritePrivateProfileIntW(wchar_t *wszSection, wchar_t *wszItem, int iData, wchar_t *wszPath)
|
|
||||||
{
|
|
||||||
wchar_t wszData[33];
|
|
||||||
_itow(iData, wszData, 10);
|
|
||||||
return WritePrivateProfileStringW(wszSection, wszItem, wszData, wszPath);
|
|
||||||
}
|
|
||||||
|
|
||||||
// For cleanup ( Closing windows and the such )
|
// For cleanup ( Closing windows and the such )
|
||||||
void HoldClose()
|
void HoldClose()
|
||||||
{
|
{
|
||||||
|
|
|
@ -38,15 +38,6 @@ void ConvertString(const char *in, wchar_t *out, int size);
|
||||||
void ConvertString(const wchar_t *in, char *out, int size);
|
void ConvertString(const wchar_t *in, char *out, int size);
|
||||||
void ConvertString(const char *in, char *out, int size);
|
void ConvertString(const char *in, char *out, int size);
|
||||||
|
|
||||||
int WritePrivateProfileIntA(char *, char *, int, char *);
|
|
||||||
int WritePrivateProfileIntW(wchar_t *, wchar_t *, int, wchar_t *);
|
|
||||||
|
|
||||||
#ifdef UNICODE
|
|
||||||
#define WritePrivateProfileInt WritePrivateProfileIntW
|
|
||||||
#else
|
|
||||||
#define WritePrivateProfileInt WritePrivateProfileIntA
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct HOTKEY
|
struct HOTKEY
|
||||||
{
|
{
|
||||||
WORD key;
|
WORD key;
|
||||||
|
|
Loading…
Reference in New Issue