Files
2ship2harkinian-Android/include/rdb.h
T

11 lines
183 B
C
Raw Normal View History

2018-11-13 22:14:21 -06:00
#ifndef _RDB_H_
#define _RDB_H_
typedef struct {
2018-11-16 22:14:07 -06:00
/* 0x0 */ unsigned int type : 2;
/* 0x0 */ unsigned int length : 2;
/* 0x1 */ unsigned char buf[3];
2018-11-13 22:14:21 -06:00
} rdbPacket;
#endif