View Single Post
Old 06-22-2006, 01:47 AM   #5 (permalink)
QUantumAnenome
Code Monkey
 
Join Date: Mar 2005
Posts: 56
QUantumAnenome is on a distinguished road
Send a message via Yahoo to QUantumAnenome
Well, it compiled when I added user32.lib to the linker inputs, started with a console app.

Code:
#include "stdafx.h"
#include <windows.h>

int _tmain(int argc, _TCHAR* argv[])
{
	FindWindow(NULL, NULL);
	return 0;
}
QUantumAnenome is offline   Reply With Quote