mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
20 lines
357 B
C
20 lines
357 B
C
|
|
// Windows/ResourceString.h
|
||
|
|
|
||
|
|
#ifndef __WINDOWS_RESOURCESTRING_H
|
||
|
|
#define __WINDOWS_RESOURCESTRING_H
|
||
|
|
|
||
|
|
#include "Common/String.h"
|
||
|
|
|
||
|
|
namespace NWindows {
|
||
|
|
|
||
|
|
CSysString MyLoadString(UINT resourceID);
|
||
|
|
#ifdef _UNICODE
|
||
|
|
inline UString MyLoadStringW(UINT resourceID)
|
||
|
|
{ return MyLoadString(resourceID); }
|
||
|
|
#else
|
||
|
|
UString MyLoadStringW(UINT resourceID);
|
||
|
|
#endif
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|