diff options
| author | oltolm <oleg.tolmatcev@gmail.com> | 2026-02-04 22:22:16 +0100 |
|---|---|---|
| committer | oltolm <oleg.tolmatcev@gmail.com> | 2026-02-08 00:37:29 +0100 |
| commit | 60351c19ccb5fb48cc82e7b6b59ae291577b5560 (patch) | |
| tree | 66b67ab028f56ee99790211cec39b36bbc78ce10 /Source/Core/WinUpdater/WinUI.cpp | |
| parent | a8fbe8f28f622851333538ee0a2899bc159161ba (diff) | |
Misc: fix compiler warning: implicit declaration of function
Diffstat (limited to 'Source/Core/WinUpdater/WinUI.cpp')
| -rw-r--r-- | Source/Core/WinUpdater/WinUI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/WinUpdater/WinUI.cpp b/Source/Core/WinUpdater/WinUI.cpp index 6ff7461ce0..c6e65626e9 100644 --- a/Source/Core/WinUpdater/WinUI.cpp +++ b/Source/Core/WinUpdater/WinUI.cpp @@ -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); |
