mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
22 lines
366 B
C
22 lines
366 B
C
#ifndef DRIVER_HINT_INCL
|
|
#define DRIVER_HINT_INCL
|
|
#define DRIVER_HINT_DEF(a, b) a,
|
|
|
|
enum class driver_hint {
|
|
#include "application/driverhints_def.h"
|
|
};
|
|
|
|
#undef DRIVER_HINT_DEF
|
|
#endif
|
|
|
|
#ifdef DRIVER_HINT_CONTENT
|
|
#define DRIVER_HINT_DEF(a, b) b,
|
|
|
|
const char *driver_hints_texts[] =
|
|
{
|
|
#include "application/driverhints_def.h"
|
|
};
|
|
|
|
#undef DRIVER_HINT_DEF
|
|
#endif
|