一開始我有:GetCurrentConsoleFont未在範圍內聲明,我做錯了什麼?
#include <sstream>
#include <iostream>
#include <stdio.h>
#include <iomanip>
#include <string>
#define _WIN32_WINNT 0x500 //tells that this is win 2000 or higher, without GetConsoleWindow would not work
#include <windows.h>
using namespace std;
int main() {
PCONSOLE_FONT_INFO lpConsoleCurrentFont;
GetCurrentConsoleFont(GetStdHandle(STD_OUTPUT_HANDLE), false, lpConsoleCurrentFont);
return 0;
}
和無證功能SetConsoleFont
的作品,但在編譯GetCurrentConsoleFont
失敗,稱這是不是在這個範圍內聲明。
- 編輯:改爲自持代碼。
_Testcase_,請。 – 2012-01-14 23:57:02
我只是試了一下,它的工作 – 2012-01-14 23:58:29
好吧,我把它改爲自持碼,它工作嗎? – rsk82 2012-01-15 00:04:09