PowerMaster/include/global.h

27 lines
301 B
C
Raw Normal View History

2024-10-10 16:59:51 +08:00
#ifndef GLOBAL_H
#define GLOBAL_H
enum MessageDialogType
{
type_information = 0,
type_question,
type_warning
};
enum MessageDialogBtn
{
btn_Null = 0,
btn_Yes,
btn_No
};
enum DateTimeWidgetState
{
realTime,
historical
};
2024-10-10 16:59:51 +08:00
extern MessageDialogBtn g_msgDlgBtn;
#endif