mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-18 15:31:11 +01:00
18 lines
186 B
C
18 lines
186 B
C
#ifndef VERSION_H__
|
|
#define VERSION_H__
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
typedef enum {
|
|
API_USB,
|
|
API_N64,
|
|
} version_api_type_t;
|
|
|
|
|
|
uint32_t version_api (version_api_type_t type);
|
|
|
|
|
|
#endif
|