tekno_uttv2/ultimateteknotool.v2/CWindowTextWriter.cpp
2020-12-31 15:35:46 +03:00

19 lines
338 B
C++

#include "pch.h"
#include "CWindowTextWriter.h"
void CWindowTextWriter_WriteText(CWindow_edit* win, const wchar_t* text)
{
if (text != nullptr)
{
::SetWindowTextW(win->hwnd, text);
}
}
void CWindowTextWriter_WriteText(CWindow_edit_cfg* win, const wchar_t* text)
{
if (text != nullptr)
{
::SetWindowTextW(win->hwnd, text);
}
}