RetroArch
config_file_userdata.h
Go to the documentation of this file.
1 /* Copyright (C) 2010-2018 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 
33 
35 {
37  const char *prefix[2];
38 };
39 
40 int config_userdata_get_float(void *userdata, const char *key_str,
41  float *value, float default_value);
42 
43 int config_userdata_get_int(void *userdata, const char *key_str,
44  int *value, int default_value);
45 
46 int config_userdata_get_float_array(void *userdata, const char *key_str,
47  float **values, unsigned *out_num_values,
48  const float *default_values, unsigned num_default_values);
49 
50 int config_userdata_get_int_array(void *userdata, const char *key_str,
51  int **values, unsigned *out_num_values,
52  const int *default_values, unsigned num_default_values);
53 
54 int config_userdata_get_string(void *userdata, const char *key_str,
55  char **output, const char *default_output);
56 
57 void config_userdata_free(void *ptr);
58 
60 
61 #endif
const char * prefix[2]
Definition: config_file_userdata.h:37
int config_userdata_get_float_array(void *userdata, const char *key_str, float **values, unsigned *out_num_values, const float *default_values, unsigned num_default_values)
Definition: config_file_userdata.c:64
int config_userdata_get_float(void *userdata, const char *key_str, float *value, float default_value)
Definition: config_file_userdata.c:28
const GLvoid * ptr
Definition: nx_glsym.h:242
#define RETRO_BEGIN_DECLS
Definition: retro_common_api.h:41
GLboolean GLenum GLenum GLvoid * values
Definition: glext.h:6318
int config_userdata_get_int(void *userdata, const char *key_str, int *value, int default_value)
Definition: config_file_userdata.c:46
void config_userdata_free(void *ptr)
Definition: config_file_userdata.c:145
#define RETRO_END_DECLS
Definition: retro_common_api.h:42
Definition: config_file_userdata.h:34
Definition: config_file.h:55
config_file_t * conf
Definition: config_file_userdata.h:36
std::string output
Definition: Config.FromFile.cpp:44
GLsizei const GLfloat * value
Definition: glext.h:6709
int config_userdata_get_int_array(void *userdata, const char *key_str, int **values, unsigned *out_num_values, const int *default_values, unsigned num_default_values)
Definition: config_file_userdata.c:95
int config_userdata_get_string(void *userdata, const char *key_str, char **output, const char *default_output)
Definition: config_file_userdata.c:125