[go: up one dir, main page]

Menu

[r999]: / trunk / VTS3 / ScriptExecMsg.h  Maximize  Restore  History

Download this file

41 lines (31 with data), 1.1 kB

 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
40
#if !defined(AFX_SCRIPTEXECMSG_H__9221BBDD_15A7_400A_84B6_FA0B3269318D__INCLUDED_)
#define AFX_SCRIPTEXECMSG_H__9221BBDD_15A7_400A_84B6_FA0B3269318D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ScriptExecMsg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// ScriptExecMsg window
class ScriptExecMsg : public CObject
{
public:
enum ScriptMsgType
{
// We see occasional crashes in PreTranslateMessage,
// probably due to accessing a ScriptExecMsg after
// it has been deleted.
// Until we can find the cause, assign fancy values
// to the message types to avoid doing much
msgDeleted = 0,
msgStatus = 0x44444444,
msgMakeDlg = 0x55555555
};
ScriptMsgType m_msgtype;
ScriptExecMsg( ScriptMsgType msgtype );
virtual ~ScriptExecMsg();
ScriptMsgType GetType(void);
DECLARE_DYNAMIC(ScriptExecMsg)
};
/////////////////////////////////////////////////////////////////////////////
#endif // !defined(AFX_SCRIPTEXECMSG_H__9221BBDD_15A7_400A_84B6_FA0B3269318D__INCLUDED_)