13 lines
167 B
C
13 lines
167 B
C
#ifndef _DEVICE_INFO_H
|
|
#define _DEVICE_INFO_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct device_info {
|
|
int type;
|
|
char key[0x100];
|
|
uint64_t flags;
|
|
};
|
|
|
|
#endif // _DEVICE_INFO_H
|