2019-05-07 03:18:39 +08:00
|
|
|
#ifndef HGL_EXIT_INCLUDE
|
|
|
|
#define HGL_EXIT_INCLUDE
|
|
|
|
|
|
|
|
namespace hgl
|
|
|
|
{
|
2019-05-07 10:44:26 +08:00
|
|
|
typedef int (*SignalAppExitFunc)(); //程序退出处理事件函数
|
2019-05-07 03:18:39 +08:00
|
|
|
|
2019-05-07 10:44:26 +08:00
|
|
|
void SetSignalAppExit(SignalAppExitFunc); //设置程序退出处理事件函数
|
2019-05-07 03:18:39 +08:00
|
|
|
}//namespace hgl
|
|
|
|
#endif//HGL_EXIT_INCLUDE
|