📄 osptnlog.h
字号:
#ifndef _OSPTNLOG_H#define _OSPTNLOG_H#define LOGPERM (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)#define MAXLOGSZ 100000#define BUFSZ 8192#define DUMPLEN 16#ifndef _WIN32#ifdef OSPTNLOGDEBUG#define OSPTNINITLOG(a) tninitlog(a)#define OSPTNLOG(a) tnlog(a)#define OSPTNLOG1(a,b) tnlog(a,b)#define OSPTNLOG2(a,b,c) tnlog(a,b,c)#define OSPTNLOG3(a,b,c,d) tnlog(a,b,c,d)#define OSPTNLOG4(a,b,c,d,e) tnlog(a,b,c,d,e)#define OSPTNLOGDUMP(a,b,c) tnlogdump(a,b,c)#define OSPTNLOGMEMUSE(a) tnlogmemuse(a)#else#define OSPTNINITLOG(a)#define OSPTNLOG(a) #define OSPTNLOG1(a,b) #define OSPTNLOG2(a,b,c) #define OSPTNLOG3(a,b,c,d) #define OSPTNLOG4(a,b,c,d,e) #define OSPTNLOGDUMP(a,b,c) #define OSPTNLOGMEMUSE(a) #endif#ifdef __cplusplusextern "C"{#endif void get_log_time(char *timebuf); void tnlog(char *fmt, ...); int tnlogdump(unsigned char *data, int len, char *msg); int tninitlog(char *filename); void tnlogmemuse(char *string);#ifdef __cplusplus}#endif#else /* WIN32 defined */#define OSPTNINITLOG(a)#define OSPTNLOG(a) #define OSPTNLOG1(a,b) #define OSPTNLOG2(a,b,c) #define OSPTNLOG3(a,b,c,d) #define OSPTNLOG4(a,b,c,d,e) #define OSPTNLOGDUMP(a,b,c) #define OSPTNLOGMEMUSE(a) #endif /* WIN32 */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -