mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-18 23:41:12 +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
|