I wasn’t sure where to post this, yes it’s a false alarm… But I consider it to be an issue…
I was looking at Win32 programming and when I try to compile the following code I get a warning saying a virus has been found.
Clearly the code is simply showing a message box saying “Hello World!”, without this it’s fine.
Malware name: Win32:Malware-gen
Malware type: Virus/Worm
VPS version: 100512-1, 12/05/2010
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL,
(LPCWSTR)"Hello World!",
(LPCWSTR)"Hello!",
MB_OK);
return 0;
}