amx_settings_api.inc
Original include source with line numbers.
| 1 | #if defined _amx_settings_api_included |
| 2 | #endinput |
| 3 | #endif |
| 4 | #define _amx_settings_api_included |
| 5 | |
| 6 | #if AMXX_VERSION_NUM >= 175 |
| 7 | #pragma reqlib amx_settings_api |
| 8 | #if !defined AMXMODX_NOAUTOLOAD |
| 9 | #pragma loadlib amx_settings_api |
| 10 | #endif |
| 11 | #else |
| 12 | #pragma library amx_settings_api |
| 13 | #endif |
| 14 | |
| 15 | native amx_load_setting_string_arr(const filename[], const section[], const key[], Array:array_handle); |
| 16 | native amx_save_setting_string_arr(const filename[], const section[], const key[], Array:array_handle); |
| 17 | native amx_load_setting_int_arr(const filename[], const section[], const key[], Array:array_handle); |
| 18 | native amx_save_setting_int_arr(const filename[], const section[], const key[], Array:array_handle); |
| 19 | native amx_load_setting_float_arr(const filename[], const section[], const key[], Array:array_handle); |
| 20 | native amx_save_setting_float_arr(const filename[], const section[], const key[], Array:array_handle); |
| 21 | native amx_load_setting_string(const filename[], const section[], const key[], setting_string[], len); |
| 22 | native amx_save_setting_string(const filename[], const section[], const key[], const setting_string[]); |
| 23 | native amx_load_setting_int(const filename[], const section[], const key[], &integer_value); |
| 24 | native amx_save_setting_int(const filename[], const section[], const key[], integer_value); |
| 25 | native amx_load_setting_float(const filename[], const section[], const key[], &Float:float_value); |
| 26 | native amx_save_setting_float(const filename[], const section[], const key[], Float:float_value); |
| 27 | |