05-12-2017/05:56 PM
(This post was last modified: 05-12-2017/05:57 PM by Byte. Edited 1 time in total.)
Hey Beax,
I can confirm I made this program and its for an old inside joke/meme.
The file is not malicious but as its an unsigned .exe from the web your anti virus may have picked it up as suspicious.
This is the actual source code:
And all it does is print an error message before closing.
I can confirm I made this program and its for an old inside joke/meme.
The file is not malicious but as its an unsigned .exe from the web your anti virus may have picked it up as suspicious.
This is the actual source code:
Code:
#include <windows.h>
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow)
{
MessageBox(NULL, L"ERROR! You are gay faggot.", L"ERROR!", MB_ICONEXCLAMATION);
return 0;
}
And all it does is print an error message before closing.