blob: aeb618b719eeea8d24dc6a6a2acb8ade2bca5c61 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef CUSTOMMESSAGES_H
#define CUSTOMMESSAGES_H
#pragma once
enum
{
CUSTOMMESSAGESSTART = WM_USER + 1,
WM_MAPDOC_CHANGED,
WM_DOCTYPE_CHANGED,
WM_GAME_CHANGED,
//
// Posted by CAngleBox:
//
ABN_CHANGED, // The angle in the angle box has changed.
//
// Posted by CTextureWindow:
//
TWN_SELCHANGED, // The texture window selection has changed.
TWN_LBUTTONDBLCLK, // The user double clicked in the texture window.
//
// Posted by CLightingPreviewResultsWindow
//
LPRV_WINDOWCLOSED,
};
#endif // CUSTOMMESSAGES_H
|