mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-11 00:47:54 +01:00
125 lines
3.7 KiB
C
125 lines
3.7 KiB
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
struct cppIVRSettings_IVRSettings_001_GetSettingsErrorNameFromEnum_params
|
|
{
|
|
void *linux_side;
|
|
const char *_ret;
|
|
EVRSettingsError eError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_GetSettingsErrorNameFromEnum( struct cppIVRSettings_IVRSettings_001_GetSettingsErrorNameFromEnum_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_Sync_params
|
|
{
|
|
void *linux_side;
|
|
bool _ret;
|
|
bool bForce;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_Sync( struct cppIVRSettings_IVRSettings_001_Sync_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_GetBool_params
|
|
{
|
|
void *linux_side;
|
|
bool _ret;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
bool bDefaultValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_GetBool( struct cppIVRSettings_IVRSettings_001_GetBool_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_SetBool_params
|
|
{
|
|
void *linux_side;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
bool bValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_SetBool( struct cppIVRSettings_IVRSettings_001_SetBool_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_GetInt32_params
|
|
{
|
|
void *linux_side;
|
|
int32_t _ret;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
int32_t nDefaultValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_GetInt32( struct cppIVRSettings_IVRSettings_001_GetInt32_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_SetInt32_params
|
|
{
|
|
void *linux_side;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
int32_t nValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_SetInt32( struct cppIVRSettings_IVRSettings_001_SetInt32_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_GetFloat_params
|
|
{
|
|
void *linux_side;
|
|
float _ret;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
float flDefaultValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_GetFloat( struct cppIVRSettings_IVRSettings_001_GetFloat_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_SetFloat_params
|
|
{
|
|
void *linux_side;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
float flValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_SetFloat( struct cppIVRSettings_IVRSettings_001_SetFloat_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_GetString_params
|
|
{
|
|
void *linux_side;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
char *pchValue;
|
|
uint32_t unValueLen;
|
|
const char *pchDefaultValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_GetString( struct cppIVRSettings_IVRSettings_001_GetString_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_SetString_params
|
|
{
|
|
void *linux_side;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
const char *pchValue;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_SetString( struct cppIVRSettings_IVRSettings_001_SetString_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_RemoveSection_params
|
|
{
|
|
void *linux_side;
|
|
const char *pchSection;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_RemoveSection( struct cppIVRSettings_IVRSettings_001_RemoveSection_params *params );
|
|
|
|
struct cppIVRSettings_IVRSettings_001_RemoveKeyInSection_params
|
|
{
|
|
void *linux_side;
|
|
const char *pchSection;
|
|
const char *pchSettingsKey;
|
|
EVRSettingsError *peError;
|
|
};
|
|
extern void cppIVRSettings_IVRSettings_001_RemoveKeyInSection( struct cppIVRSettings_IVRSettings_001_RemoveKeyInSection_params *params );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|