Archived
1
0
This repository has been archived on 2024-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
winamp/Src/Plugins/General/gen_hotkeys/HOTKEY.H

32 lines
678 B
C++
Raw Permalink Normal View History

2024-09-24 12:54:57 +00:00
// HotKey.h: interface for the CHotKey class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_HOTKEY_H__82523B98_0E49_4B2A_8206_A4262D29C3C8__INCLUDED_)
#define AFX_HOTKEY_H__82523B98_0E49_4B2A_8206_A4262D29C3C8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "gen_hotkeys.h"
struct HOTKEY_DATA
{
DWORD dwHotKey;
int iCommand;
wchar_t *szCommand;
};
struct HOTKEY
{
HOTKEY_DATA hkd;
ATOM atom;
BOOL failed;
};
int RegisterHotkey(HOTKEY *hk);
void UnregisterHotkey(HOTKEY *hk);
UINT GetModKeys(DWORD dwHotKey);
#endif // !defined(AFX_HOTKEY_H__82523B98_0E49_4B2A_8206_A4262D29C3C8__INCLUDED_)