本文介绍了GetConsoleWindow()的任何替代?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在Microsoft Visual C ++ 6中包含以下功能的代码。
HWND hWnd;
hWnd = GetConsoleWindow( );
但是当我编译程序时,它显示错误,说GetConsoleWindow作为未声明的标识符..
所以还有其他任何函数替代这个..或者如果没有,那么我可以从哪里得到定义。?
I was trying a code which includes the following function in Microsoft Visual C++ 6 ide
HWND hWnd;
hWnd=GetConsoleWindow();
but when I compile the program it shows an error saying " GetConsoleWindow " as an undeclared identifier ..
so is there any other function in alternate to this .. or if not, then from where I can get the definition.?
推荐答案
这篇关于GetConsoleWindow()的任何替代?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!