In addition to the existing Windows handle types such as HWND, HDC, HBRUSH, and so on, WINDOWS.H defines the following new handle types. They are particularly important if STRICT type checking is enabled, but you can use them even if you do not define STRICT.HINSTANCE是什么类型的数据类型?在MFC程序中能够识别吗?下面的源代码:
------------------------
HINSTANCE mydll_handle;
mydll_handle=NULL;
------------------------
在编译的时候报错:
error C2501: 'mydll_handle' : missing storage-class or type specifiers
是为什么?