standalone: revive spu_c64x build
[pcsx_rearmed.git] / deps / libretro-common / include / file / config_file_userdata.h
CommitLineData
3719602c
PC
1/* Copyright (C) 2010-2020 The RetroArch team
2 *
3 * ---------------------------------------------------------------------------------------
4 * The following license statement only applies to this file (config_file_userdata.h).
5 * ---------------------------------------------------------------------------------------
6 *
7 * Permission is hereby granted, free of charge,
8 * to any person obtaining a copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation the rights to
10 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
11 * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23#ifndef _LIBRETRO_SDK_CONFIG_FILE_USERDATA_H
24#define _LIBRETRO_SDK_CONFIG_FILE_USERDATA_H
25
26#include <string.h>
27
28#include <file/config_file.h>
29
30#include <retro_common_api.h>
31
32RETRO_BEGIN_DECLS
33
34struct config_file_userdata
35{
36 config_file_t *conf;
37 const char *prefix[2];
38};
39
40int config_userdata_get_float(void *userdata, const char *key_str,
41 float *value, float default_value);
42
43int config_userdata_get_int(void *userdata, const char *key_str,
44 int *value, int default_value);
45
46int config_userdata_get_hex(void *userdata, const char *key_str,
47 unsigned *value, unsigned default_value);
48
49int config_userdata_get_float_array(void *userdata, const char *key_str,
50 float **values, unsigned *out_num_values,
51 const float *default_values, unsigned num_default_values);
52
53int config_userdata_get_int_array(void *userdata, const char *key_str,
54 int **values, unsigned *out_num_values,
55 const int *default_values, unsigned num_default_values);
56
57int config_userdata_get_string(void *userdata, const char *key_str,
58 char **output, const char *default_output);
59
60void config_userdata_free(void *ptr);
61
62RETRO_END_DECLS
63
64#endif