首页 > 其他 > 详细

获取当前应用程序实例(instance:HINSTANCE)(转)

时间:2017-08-18 12:11:56      阅读:378      评论:0      收藏:0      [点我收藏+]

if using MFC AfxGetInstanceHandle(). For console programs, call GetConsoleWindow() to get the HWND then GetWindowLong() to get the HINSTANCE.

For the Win32 API, you could also use GetModuleHandle():

 

//get instance of current program (self)
HINSTANCE hInst= GetModuleHandle (0);

获取当前应用程序实例(instance:HINSTANCE)(转)

原文:http://www.cnblogs.com/happykoukou/p/7388879.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!