mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
11 lines
183 B
C
11 lines
183 B
C
#ifndef _RDB_H_
|
|
#define _RDB_H_
|
|
|
|
typedef struct {
|
|
/* 0x0 */ unsigned int type : 2;
|
|
/* 0x0 */ unsigned int length : 2;
|
|
/* 0x1 */ unsigned char buf[3];
|
|
} rdbPacket;
|
|
|
|
#endif
|