PV1_MakeProject/include/monitor.h

22 lines
448 B
C
Raw Normal View History

2018-07-05 02:19:12 +00:00
#ifndef _MONITOR_H
#define _MONITOR_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef ENABLE_COUNT_DEBUG
int MonAddNewItem(const char* pName, int logSaveTime);
int MonIncreaseCount(const char* pName);
int MonUpgradeStatistical(const char* pName, long newVal);
int MonDiffStatistical(const char* pName, long long newVal);
int MonItemLogout(const char* pName);
int MonitorInit(void);
#endif
#ifdef __cplusplus
}
#endif
#endif