Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
412 views

Forward declare HINSTANCE and friends

Is there a way to forward-declare the HINSTANCE type from the WinAPI without including the full (and big) windows.h header? For example, if I have a class RenderWindow which owns an HINSTANCE ...
2
votes
3answers
347 views

Determine the current HINSTANCE?

The HINSTANCE of a win32 application is passed to WinMain, but is there any other way of determining the current HINSTANCE (in case you couldn't tell, I'm very new to win32 programming!)? I need to ...
1
vote
2answers
232 views

How to terminate an application using the HINSTANCE

I am spawning an application from c++ with ShellExecute, so I have the HINSTANCE of the app. How can I close it now using that HINSTANCE? And can I use WaitForSingleObject() to wait for the app to ...
0
votes
0answers
44 views

Getting the HINSTANCE from HWND

GetWindowLong (GetTopWindow(NULL),GWL_HINSTANCE) returns 0 ... (Also tried with GetWindowLongPtr) Does anyone have an idea why is that? Also how do you convert LONG to HINSTANCE? ...