#ifndef UTIL_SYSMESSAGE_HPP #define UTIL_SYSMESSAGE_HPP #include enum SYSMSG_TYPE { SYSMSG_INFO = 0x0, SYSMSG_WARNING = 0x1, SYSMSG_ERROR = 0x2, SYSMSG_FATAL = 0x3, SYSMSG_NUMTYPES = 0x4 }; void SysMsgPrintf(SYSMSG_TYPE, const char*, ...); #endif