📄 drumtime.h
字号:
/*------------------------------------------------------------
DRUMTIME.H Header File for Time Functions for DRUM Program
------------------------------------------------------------*/
#define NUM_PERC 47
#define WM_USER_NOTIFY (WM_USER + 1)
#define WM_USER_FINISHED (WM_USER + 2)
#define WM_USER_ERROR (WM_USER + 3)
#pragma pack(push, 2)
typedef struct
{
short iMsecPerBeat ;
short iVelocity ;
short iNumBeats ;
DWORD dwSeqPerc [NUM_PERC] ;
DWORD dwSeqPian [NUM_PERC] ;
}
DRUM, * PDRUM ;
#pragma pack(pop)
void DrumSetParams (PDRUM) ;
BOOL DrumBeginSequence (HWND) ;
void DrumEndSequence (BOOL) ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -