diff options
Diffstat (limited to 'src/frygon/headers/fg_device_info.h')
| -rw-r--r-- | src/frygon/headers/fg_device_info.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/frygon/headers/fg_device_info.h b/src/frygon/headers/fg_device_info.h new file mode 100644 index 00000000000..20a243f6c84 --- /dev/null +++ b/src/frygon/headers/fg_device_info.h @@ -0,0 +1,14 @@ +/* + * Copyright © 2025 Lucas Francisco Fryzek + * SPDX-License-Identifier: MIT + */ +#ifndef FG_DEVICE_INFO_H +#define FG_DEVICE_INFO_H 1 + +struct fg_device_info { + uint16_t device_id; + + char device_name[64]; +}; + +#endif |