Misc: fix compiler warning: implicit declaration of function

This commit is contained in:
oltolm
2026-02-04 22:22:16 +01:00
parent a8fbe8f28f
commit 60351c19cc
7 changed files with 41 additions and 40 deletions

View File

@@ -55,7 +55,7 @@ constexpr int PADDING_HEIGHT = 5;
namespace UI
{
bool InitWindow()
static bool InitWindow()
{
InitCommonControls();
@@ -206,7 +206,7 @@ void SetDescription(const std::string& text)
SetWindowText(label_handle, UTF8ToWString(text).c_str());
}
void MessageLoop()
static void MessageLoop()
{
HRESULT result = CoInitializeEx(nullptr, COINIT_MULTITHREADED);