synf-core/source/headers/device.h
2025-10-10 02:05:07 +02:00

17 lines
170 B
C

#ifndef DEVICE_H
#define DEVICE_H
#ifdef __APPLE__
typedef struct{
char* name;
} device_s;
extern device_s device_info;
void* get_device_info();
#endif
#endif