RosettaCodeData/Task/Hello-world-Graphical/C/hello-world-graphical-2.c

6 lines
103 B
C

#include <windows.h>
void SayGoodbyeWorld(HWND hWnd)
{
SetWindowText(hWnd, _T("Goodbye, World!"));
}