added a bit of doc and some games

This commit is contained in:
Marc
2022-10-03 20:33:57 +02:00
parent 68308d9df5
commit 9325a087ee
11 changed files with 92 additions and 6 deletions
+9
View File
@@ -1,6 +1,15 @@
#ifndef __INSTALL_H__
#define __INSTALL_H__
#include <stdlib.h>
#define INSTALLED_FLAG_FILE "__DO_NOT_REMOVE__"
/**
* @brief Add a mod to the folder defined in main.h
*
* @param filePath path to the mod file
* @param appId game for which the mod is destined to be used with.
* @return EXIT_SUCCESS or EXIT_FAILURE
*/
int addMod(char * filePath, int appId);
#endif