auth: Skip auth on mobile. #97

This commit is contained in:
2025-02-12 19:25:05 -05:00
parent 017a74c4e4
commit 15df4ac236
5 changed files with 129 additions and 4 deletions

View File

@ -188,10 +188,16 @@ bool tf_util_get_default_global_setting_bool(const char* name);
int tf_util_get_default_global_setting_int(const char* name);
/**
** Get teh default value of a global setting as a string.
** Get the default value of a global setting as a string.
** @param name The setting name.
** @return The default value.
*/
const char* tf_util_get_default_global_setting_string(const char* name);
/**
** Check if the app is running on a mobile device.
** @return true for iPhone/Android, false otherwise.
*/
bool tf_util_is_mobile();
/** @} */