把bundle这个名字改为config

This commit is contained in:
anod 2022-12-12 20:26:51 +08:00
parent dbf2606217
commit 89f363352f

View File

@ -12,7 +12,7 @@
typedef int acl_error_t; typedef int acl_error_t;
typedef void * acl_lib_t; typedef void * acl_lib_t;
typedef void * acl_list_t; typedef void * acl_list_t;
typedef void * acl_bundle_t; typedef void * acl_config_t;
typedef void * acl_entry_t; typedef void * acl_entry_t;
typedef const char* acl_text_t; typedef const char* acl_text_t;
typedef uint8_t acl_boolean_t; typedef uint8_t acl_boolean_t;
@ -38,11 +38,11 @@ acl_error_t acl_select_game(
acl_error_t acl_load_cheat( acl_error_t acl_load_cheat(
INPUT(acl_list_t) cheat_list_instance, INPUT(acl_list_t) cheat_list_instance,
INPUT(acl_cheatid_t) cheat_id, INPUT(acl_cheatid_t) cheat_id,
OUTPUT(acl_bundle_t) bundle_instance OUTPUT(acl_config_t) config_instance
); );
acl_error_t acl_visit_bundle( acl_error_t acl_visit_config(
INPUT(acl_bundle_t) bundle_instance, INPUT(acl_config_t) config_instance,
INPUT(acl_entryid_t) entry_id, INPUT(acl_entryid_t) entry_id,
OUTPUT(acl_entry_t) entry_instance OUTPUT(acl_entry_t) entry_instance
); );