]> git.lizzy.rs Git - irrlicht.git/blob - include/EMessageBoxFlags.h
Fix COSOperator::getSystemMemory
[irrlicht.git] / include / EMessageBoxFlags.h
1 // Copyright (C) 2002-2012 Nikolaus Gebhardt\r
2 // This file is part of the "Irrlicht Engine".\r
3 // For conditions of distribution and use, see copyright notice in irrlicht.h\r
4 \r
5 #ifndef __E_MESSAGE_BOX_FLAGS_H_INCLUDED__\r
6 #define __E_MESSAGE_BOX_FLAGS_H_INCLUDED__\r
7 \r
8 namespace irr\r
9 {\r
10 namespace gui\r
11 {\r
12 \r
13 //! enumeration for message box layout flags\r
14 enum EMESSAGE_BOX_FLAG\r
15 {\r
16         //! Flag for the OK button\r
17         EMBF_OK = 0x1,\r
18 \r
19         //! Flag for the cancel button\r
20         EMBF_CANCEL = 0x2,\r
21 \r
22         //! Flag for the yes button\r
23         EMBF_YES = 0x4,\r
24 \r
25         //! Flag for the no button\r
26         EMBF_NO = 0x8,\r
27 \r
28         //! This value is not used. It only forces this enumeration to compile in 32 bit.\r
29         EMBF_FORCE_32BIT = 0x7fffffff\r
30 };\r
31 \r
32 } // namespace gui\r
33 } // namespace irr\r
34 \r
35 #endif\r
36 \r