10 lines
128 B
C
10 lines
128 B
C
#ifndef _DEVICE_INFO_H
|
|
#define _DEVICE_INFO_H
|
|
|
|
struct device_info {
|
|
int type;
|
|
char key[0x100];
|
|
};
|
|
|
|
#endif // _DEVICE_INFO_H
|