Ahoj, mám problém s kompilováním...
Kód:
#include "hap.h"
#include <windows.h>
#include <iostream>
using namespace std;
int main()
{
HWND hWnd = GetConsoleWindow();
ShowWindow( hWnd, SW_HIDE );
printf("Funguje?");
ShowWindow( hWnd, SW_SHOW );
printf("Funguje!!!");
system("PAUSE");
return 0;
}
A v Dev-C++ mi to nehodí žádnou chybu (Při kompilování), ale v Microsoft Visual Studiu C++ ano... Nevíte v čem je chyba?
Error:
1>cantcancel.obj : error LNK2028: unresolved token (0A00036D) "extern "C" int __stdcall ShowWindow(struct HWND__ *,int)" (?ShowWindow@@$$J18YGHPAUHWND__@@H@Z) referenced in function "int __cdecl main()" (?main@@$$HYAHXZ)
1>cantcancel.obj : error LNK2019: unresolved external symbol "extern "C" int __stdcall ShowWindow(struct HWND__ *,int)" (?ShowWindow@@$$J18YGHPAUHWND__@@H@Z) referenced in function "int __cdecl main()" (?main@@$$HYAHXZ)