41 lines
761 B
C
41 lines
761 B
C
#ifndef _DRUMS_DRUMS_H_
|
|
#define _DRUMS_DRUMS_H_
|
|
|
|
#include "windows.h"
|
|
|
|
//
|
|
#define IDC_STATIC -1
|
|
|
|
// CURSOR
|
|
#define HARROW 1000
|
|
|
|
|
|
#define APPACCELERATORS 10000
|
|
|
|
#define MENU_FILE_EXIT 10000
|
|
#define MENU_FILE_NEW 10001
|
|
#define MENU_FILE_OPEN 10002
|
|
|
|
|
|
#define MENU_EDIT_CUT 12000
|
|
#define MENU_EDIT_COPY 12001
|
|
#define MENU_EDIT_PASTE 12002
|
|
|
|
|
|
// STRINGS
|
|
|
|
#define IDM_CASCADE 10014
|
|
#define IDM_TILE 10015
|
|
#define IDM_ARRANGE 10016
|
|
#define IDM_CLOSEALL 10017
|
|
#define IDM_MINIMIZEALL 10018
|
|
#define IDM_RESTOREALL 10019
|
|
|
|
|
|
// STRINGTABLE
|
|
#define STRING_DRUMVIEWWINDOWCLASSNAME 20000
|
|
|
|
|
|
#endif
|
|
|