-
Notifications
You must be signed in to change notification settings - Fork 2
/
CustomMsg.h
31 lines (27 loc) · 1017 Bytes
/
CustomMsg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//-----------------------------------------------------------------------------
// File: CustomMsg.h
//
// Desc: This file defines custom messages and control IDs that have to remain
// constant throughout the program
//
// Copyright (c) 2002 Dan
//-----------------------------------------------------------------------------
#ifndef _CUSTOMMSG_H_
#define _CUSTOMMSG_H_
// Window Messages
#define CMSG_CHANGE_TAB WM_APP + 1
#define CMSG_ALIGNVIEWS WM_APP + 2
#define CMSG_ALIGNOTHERPANES WM_APP + 3
#define CMSG_UPDATETEXTUREPREVIEW WM_APP + 4
#define CMSG_NEWSELECTION WM_APP + 5
#define CMSG_UPDATEBRUSH WM_APP + 6
#define CMSG_UPDATELIGHTDATA WM_APP + 7
// Control IDs
#define ID_TEXTUREUUPDOWN 10001
#define ID_TEXTUREVUPDOWN 10002
#define ID_COLORRED 10003
#define ID_COLORGREEN 10004
#define ID_COLORBLUE 10005
#define ID_SCALE 10006
#define ID_PANAMOUNT 10007
#endif