mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-12-02 01:54:14 +01:00
20 lines
353 B
C
20 lines
353 B
C
|
#ifndef CFG_H__
|
||
|
#define CFG_H__
|
||
|
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
uint32_t cfg_get_version (void);
|
||
|
bool cfg_query (uint32_t *args);
|
||
|
bool cfg_update (uint32_t *args);
|
||
|
void cfg_get_time (uint32_t *args);
|
||
|
void cfg_set_time (uint32_t *args);
|
||
|
void cfg_reset_state (void);
|
||
|
void cfg_init (void);
|
||
|
void cfg_process (void);
|
||
|
|
||
|
|
||
|
#endif
|