malware-dev/1-messagebox/main.c
2023-11-03 16:58:05 +02:00

13 lines
180 B
C

#include <windows.h>
int main() {
MessageBoxW(
NULL,
L"Hello, World!",
L"My awesome title",
MB_OK | MB_ICONEXCLAMATION
);
return 0;
}