split the cli and the core functionnalities

This commit is contained in:
Marc
2023-01-14 17:34:19 +01:00
parent 0c2b3afa9b
commit fce1c2912c
41 changed files with 878 additions and 751 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef __GAME_DATA_H__
#define __GAME_DATA_H__
#include "errorType.h"
/**
* @brief Get the path to the data folder
* @param appid appid of the game
* @param destination pointer to a null char * variable. it's value will be allocated with malloc
* @return error_t
*/
error_t gameData_getDataPath(int appid, char ** destination);
#endif