30/09/2018, 18:46

Tập tành làm game console

#include <stdio.h>
#include <windows.h>

void resizeConsole(int width, int height);

int main()
{

}
// Hàm thay đổi kích cỡ của khung cmd.
void resizeConsole(int width, int height)
{
	HWND console = GetConsoleWindow();
	RECT r;
	GetWindowRect(console, &r);
	MoveWindow(console, r.left, r.top, width, height, TRUE);
}

Mọi người cho hỏi cái hàm GetConsoleWindow có phải thuộc thư viện windows.h không mà sao nó báo error: 'GetConsoleWindow' was not declared in this scope

*grab popcorn* viết 20:59 ngày 30/09/2018

Ko biết bạn dùng IDE nào, nhưng mình xài DevC++ 5.11 ok nhé

Interns viết 20:48 ngày 30/09/2018

Mình dùng codeBlock 13.12

Bài liên quan
0