00001 // Copyright (C) 2002-2012 Nikolaus Gebhardt 00002 // This file is part of the "Irrlicht Engine". 00003 // For conditions of distribution and use, see copyright notice in irrlicht.h 00004 00005 #ifndef __E_MESSAGE_BOX_FLAGS_H_INCLUDED__ 00006 #define __E_MESSAGE_BOX_FLAGS_H_INCLUDED__ 00007 00008 namespace irr 00009 { 00010 namespace gui 00011 { 00012 00014 enum EMESSAGE_BOX_FLAG 00015 { 00017 EMBF_OK = 0x1, 00018 00020 EMBF_CANCEL = 0x2, 00021 00023 EMBF_YES = 0x4, 00024 00026 EMBF_NO = 0x8, 00027 00029 EMBF_FORCE_32BIT = 0x7fffffff 00030 }; 00031 00032 } // namespace gui 00033 } // namespace irr 00034 00035 #endif 00036