Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
330 B

  1. #ifndef __MEDIAKEY_H__
  2. #define __MEDIAKEY_H__
  3. enum MediaKeys {
  4. MediaKey_NextTrack,
  5. MediaKey_PrevTrack,
  6. MediaKey_Stop,
  7. MediaKey_Play,
  8. MediaKey_Other
  9. };
  10. BOOL IsAppcommandMessage(UINT message);
  11. BOOL IsAppcommandCode(int nCode);
  12. enum MediaKeys MediaKey(WPARAM wParam);
  13. BOOL IsMediaControlKey (WPARAM wParam);
  14. #endif