mirror of
https://github.com/holub/mame
synced 2025-06-20 03:06:39 +03:00
18 lines
377 B
C++
18 lines
377 B
C++
// Windows/ResourceString.h
|
|
|
|
#ifndef ZIP7_INC_WINDOWS_RESOURCE_STRING_H
|
|
#define ZIP7_INC_WINDOWS_RESOURCE_STRING_H
|
|
|
|
#include "../Common/MyString.h"
|
|
#include "../Common/MyWindows.h"
|
|
|
|
namespace NWindows {
|
|
|
|
UString MyLoadString(UINT resourceID);
|
|
void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
|
|
void MyLoadString(UINT resourceID, UString &dest);
|
|
|
|
}
|
|
|
|
#endif
|