123456789101112131415161718192021222324252627 |
- #ifndef __LOGHDR_H__
- #define __LOGHDR_H__
- #pragma once
- struct log_hdr_str
- {
- unsigned short len;
- char data[0];
- };
- struct log_hdr
- {
- unsigned long tag;
- unsigned short reserved;
- unsigned char version;
- unsigned char level;
- unsigned long tick_low;
- unsigned long tick_high;
- };
- // log_hdr -- name -- msg
- #define MAX_LOG_NAME 256
- #define MAX_LOG_LEN 1024
- #endif //__LOGHDR_H__
|