Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1.05 KB

File metadata and controls

50 lines (32 loc) · 1.05 KB

Home

Function name : GetWindowContextHelpId

Group: Shell Functions - Library: user32


The GetWindowContextHelpId function retrieves the help context identifier, if any, associated with the specified window.

Windows NT only


Code examples:

Retrieving window and menu help context identifiers

Declaration:

DWORD GetWindowContextHelpId(
    HWND  hWnd	
   );  

FoxPro declaration:

DECLARE INTEGER GetWindowContextHelpId IN user32;
	INTEGER hWnd
  

Parameters:

hWnd Handle to the window for which the help context identifier is to be retrieved


Return value:

Returns the help context identifier if the window has one or zero otherwise


Comments:

See also SetWindowContextHelpId and GetMenuContextHelpId functions.