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
|
2012-01-23 06:36:15 +00:00
|
|
|
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"
|
2011-09-08 17:05:48 +00:00
|
|
|
#include "Error.h"
|
2012-01-08 17:35:29 +00:00
|
|
|
|
2012-04-09 16:45:54 +00:00
|
|
|
UINT GetUniqueID();
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
UINT TypeID() { static UINT id = GetUniqueID(); return id; }
|
|
|
|
|
2011-09-24 13:10:31 +00:00
|
|
|
WCHAR* GetString(UINT id);
|
|
|
|
std::wstring GetFormattedString(UINT id, ...);
|
|
|
|
|
2012-05-05 15:53:33 +00:00
|
|
|
HICON GetIcon(UINT id, bool large = false);
|
|
|
|
|
2012-02-14 17:58:03 +00:00
|
|
|
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
|