SHGetAppKeyAssoc (Compact 2013)

3/28/2014

This function determines if a navigational control is mapped to an application.

Syntax

BYTE SHGetAppKeyAssoc(
  LPCTSTR ptszApp
);

Parameters

  • ptszApp
    [in] Pointer to the null-terminated string that contains the name of the application executable, for example, MyApp.exe.

Return Value

If successful, this function returns the virtual key code of the navigation control associated with the application. It returns 0 to indicate that there is no button mapped to the application.

Remarks

Use this function to add additional features to a mapped navigation control. For example, use SHGetAppKeyAssoc to get the virtual key code for the program button mapped to your application. Then, use a timer and GetAsyncKeyState to determine if the program button is held down for a specified duration. If the button is held down, a new document is created.

This function relies on the data stored in HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\Keys.

For Windows Embedded Compact,**for more information, see Shell Registry Settings.

Requirements

Header

aygshell.h

Library

aygshell.lib

See Also

Reference

Shell Functions
SHSetAppKeyWndAssoc
GetAsyncKeyState