12-21-2001 05:00 AM
12-21-2001 10:44 AM
12-24-2001 03:49 AM
01-10-2007 11:42 AM
In this example:
GetPanelAttribute (panelHandle, ATTR_SYSTEM_WINDOW_HANDLE, &hWnd);
"hWnd" is the variable name, and it's of type the CVI type "HWND".
So, when you set up your variable to pass into the function above you'll want to set it up as:
HWND hWnd = NULL;
Not sure why you need the hWnd value as an int*, but as per the windows API, the hWnd values passed around are all of type HWND.