C++. Simple displaying a Message Box

Простой способ создания диалоговоко окошка.

Для более подробного ознакомления - MessageBox function (Windows), Message Box Example (C++) (Windows) и Using Dialog Boxes (Window).

Немного кода (скачать):

#include <windows.h>

int DisplayResourceNAMessageBox() {
    int msgboxID = MessageBox(
        NULL,
        (LPCWSTR)L"Are you sitting down for an hour. Quickly raise your ass and go a walk",
        (LPCWSTR)L"Health timer",
        MB_OK
    );
    return msgboxID;
}

int main() {
 DisplayResourceNAMessageBox();
 return 0;
}

Ну и как всегда - удачи!