mirror of
https://github.com/ModOrganizer2/modorganizer-uibase.git
synced 2026-07-27 14:03:49 -07:00
* Add proper CMake packaging for UIBase. * Add alias mo2::uibase target for uibase. * Add a few string methods to remove boost dependencies.
15 lines
227 B
C++
15 lines
227 B
C++
#ifndef UIBASE_ERRORCODES_H
|
|
#define UIBASE_ERRORCODES_H
|
|
|
|
#include "dllimport.h"
|
|
#include <Windows.h>
|
|
|
|
namespace MOBase
|
|
{
|
|
|
|
QDLLEXPORT const wchar_t* errorCodeName(DWORD code);
|
|
|
|
} // namespace MOBase
|
|
|
|
#endif UIBASE_ERRORCODES_H
|