minecraft-pi-reborn/media-layer/include/SDL/SDL_version.h

18 lines
205 B
C
Raw Normal View History

2021-11-12 16:05:09 +00:00
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
typedef struct SDL_version {
uint8_t major;
uint8_t minor;
uint8_t patch;
} SDL_version;
#ifdef __cplusplus
}
#endif