A buncha muncha cruncha .h docs. Also add vim temporary files to .gitignore.

This commit is contained in:
2024-03-03 18:12:44 -05:00
parent 5b7e5eb91b
commit 5b93db7463
6 changed files with 428 additions and 7 deletions

View File

@ -8,9 +8,24 @@
** @{
*/
/** An SSB instance. */
typedef struct _tf_ssb_t tf_ssb_t;
/**
** Import apps in a directory to a user's account.
** @param ssb The SSB instance.
** @param user The username.
** @param path The on-disk path of the apps.
*/
void tf_ssb_import(tf_ssb_t* ssb, const char* user, const char* path);
/**
** Import apps from a zip file to a user's account.
** @param ssb The SSB instance.
** @param zip_path The path to the zip file on disk.
** @param user The user into whose account the apps will be imported.
** @param path The path in the zip to the apps.
*/
void tf_ssb_import_from_zip(tf_ssb_t* ssb, const char* zip_path, const char* user, const char* path);
/** @} */