Files
mop3/include/device_info.h
kamkow1 d79556a58f
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 4m29s
Build documentation / build-and-deploy (push) Successful in 3m51s
devices utility app
2026-04-03 02:33:47 +02:00

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