rainmeter-studio/Library/Litestep.h

59 lines
1.7 KiB
C
Raw Normal View History

2009-02-10 18:37:48 +00:00
/*
Copyright (C) 2002 Kimmo Pekkola + few lsapi developers
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
of the License, or (at your option) any later version.
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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2009-02-10 18:37:48 +00:00
*/
#ifndef __LITESTEP_H__
#define __LITESTEP_H__
#include <windows.h>
#include <comdef.h>
#include <string>
2013-01-27 10:14:37 +00:00
#include "../Common/StringUtil.h"
#include "Error.h"
2012-01-08 17:35:29 +00:00
enum LOGLEVEL
{
LOG_ERROR = 1,
LOG_WARNING = 2,
LOG_NOTICE = 3,
LOG_DEBUG = 4
};
2009-02-10 18:37:48 +00:00
void InitalizeLitestep();
void FinalizeLitestep();
2009-02-10 18:37:48 +00:00
2012-04-09 16:45:54 +00:00
UINT GetUniqueID();
template <typename T>
UINT TypeID() { static UINT id = GetUniqueID(); return id; }
void Log(int nLevel, const WCHAR* message);
2012-01-08 17:35:29 +00:00
void LogWithArgs(int nLevel, const WCHAR* format, ...);
2011-09-24 13:10:31 +00:00
void LogError(CError& error);
2011-09-23 16:28:38 +00:00
2012-05-29 16:02:20 +00:00
void RunCommand(std::wstring command);
2012-08-18 06:45:16 +00:00
void RunFile(const WCHAR* file, const WCHAR* args = NULL);
2011-09-24 13:10:31 +00:00
WCHAR* GetString(UINT id);
std::wstring GetFormattedString(UINT id, ...);
HICON GetIcon(UINT id, bool large = false);
void RmNullCRTInvalidParameterHandler(const wchar_t* expression, const wchar_t* function, const wchar_t* file, unsigned int line, uintptr_t pReserved);
2011-09-24 13:10:31 +00:00
2011-09-23 16:28:38 +00:00
#endif