mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-23 11:55:26 +00:00
15 lines
280 B
C++
15 lines
280 B
C++
|
// HelloWorld.cpp : Defines the entry point for the console application.
|
||
|
//
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include <windows.h>
|
||
|
|
||
|
|
||
|
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)
|
||
|
{
|
||
|
MessageBoxA(0, "Hello World", "Hello World", 0);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|