我需要使用一些GDI32功能,但我需要添加庫第一。我嘗試鏈接它與鏈接器選項,但文本沒有顯示。 那麼如何通過代碼添加庫? 注:在#pragma評論(LIB,「gid32.lib」)是不可移植的,這就是爲什麼我不能用它:(如何鏈接TextOut()函數庫?
#include <iostream>
#include <string.h>
#include <windows.h>
//#include <WinGdi.h>
using namespace std;
int main()
{
//TextBlink("hello world", 10,20,3,5);
HDC hDC=GetDC(GetConsoleWindow());
SetTextColor(hDC,6);
TextOut(hDC,1,5,"hello world",strlen("hello world"));
cin.get();
}
整個GDI庫不是可移植的......或者你的意思是僅在不同的Windows編譯器之間? – nvoigt