2007-10-26 22:34:42 +00:00
|
|
|
/*
|
|
|
|
* 3D Text OpenGL Screensaver (settings.c)
|
|
|
|
*
|
|
|
|
* Copyright 2007 Marc Piulachs
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-10-27 10:34:16 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2007-10-26 22:34:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include "3dtext.h"
|
|
|
|
|
|
|
|
TCHAR m_Text[MAX_PATH];
|
|
|
|
|
2007-12-25 15:45:53 +00:00
|
|
|
VOID LoadSettings(VOID)
|
2007-10-26 22:34:42 +00:00
|
|
|
{
|
|
|
|
HKEY hkey;
|
2007-12-25 15:45:53 +00:00
|
|
|
DWORD len = MAX_PATH * sizeof(TCHAR);
|
2007-10-26 22:34:42 +00:00
|
|
|
|
|
|
|
RegCreateKeyEx(HKEY_CURRENT_USER, _T("Software\\Microsoft\\ScreenSavers\\Text3D"), 0,
|
|
|
|
_T(""), 0, KEY_READ, NULL, &hkey, NULL);
|
|
|
|
|
2007-12-25 13:59:57 +00:00
|
|
|
if (RegQueryValueEx(hkey, _T("DisplayString"), NULL, NULL, (LPBYTE)m_Text, &len) != ERROR_SUCCESS)
|
2007-10-26 22:34:42 +00:00
|
|
|
{
|
2007-12-25 13:59:57 +00:00
|
|
|
_tcscpy(m_Text, _TEXT("ReactOS Rocks!"));
|
2007-10-26 22:34:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
|
|
|
|
2007-12-25 15:45:53 +00:00
|
|
|
VOID SaveSettings(VOID)
|
2007-10-26 22:34:42 +00:00
|
|
|
{
|
|
|
|
HKEY hkey;
|
|
|
|
|
|
|
|
RegCreateKeyEx(HKEY_CURRENT_USER, _T("Software\\Microsoft\\ScreenSavers\\Text3D"), 0,
|
|
|
|
_T(""), 0, KEY_WRITE, NULL, &hkey, NULL);
|
|
|
|
|
2007-12-25 15:45:53 +00:00
|
|
|
RegSetValueEx(hkey, _T("DisplayString"), 0, REG_SZ, (LPBYTE)m_Text, (_tcslen(m_Text) + 1) * sizeof(TCHAR));
|
2007-10-26 22:34:42 +00:00
|
|
|
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|