Home | History | Annotate | Download | only in src

Lines Matching refs:LCHAR

27 #include "LCHAR.h"
37 ESR_ReturnCode ESR_SessionCreate(const LCHAR* filename)
57 ESR_ReturnCode ESR_SessionGetProperty(const LCHAR* name, void** value, VariableTypes type)
63 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetInt(const LCHAR* name, int* value)
69 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetUint16_t(const LCHAR* name, asr_uint16_t* value)
75 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetSize_t(const LCHAR* name,
82 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetFloat(const LCHAR* name, float* value)
88 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetBool(const LCHAR* name, ESR_BOOL* value)
94 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetLCHAR(const LCHAR* name, LCHAR* value, size_t* len)
100 ESR_ReturnCode ESR_SessionContains(const LCHAR* name, ESR_BOOL* exists)
106 ESR_ReturnCode ESR_SessionSetProperty(const LCHAR* name, void* value, VariableTypes type)
112 ESR_ReturnCode ESR_SessionSetInt(const LCHAR* name, int value)
118 ESR_ReturnCode ESR_SessionSetUint16_t(const LCHAR* name, asr_uint16_t value)
124 ESR_ReturnCode ESR_SessionSetSize_t(const LCHAR* name, size_t value)
130 ESR_ReturnCode ESR_SessionSetFloat(const LCHAR* name, float value)
136 ESR_ReturnCode ESR_SessionSetBool(const LCHAR* name, ESR_BOOL value)
142 ESR_ReturnCode ESR_SessionSetLCHAR(const LCHAR* name, LCHAR* value)
148 ESR_ReturnCode ESR_SessionSetIntIfEmpty(const LCHAR* name, int value)
154 ESR_ReturnCode ESR_SessionSetUint16_tIfEmpty(const LCHAR* name, asr_uint16_t value)
160 ESR_ReturnCode ESR_SessionSetSize_tIfEmpty(const LCHAR* name, size_t value)
166 ESR_ReturnCode ESR_SessionSetFloatIfEmpty(const LCHAR* name, float value)
172 ESR_ReturnCode ESR_SessionSetBoolIfEmpty(const LCHAR* name, ESR_BOOL value)
178 ESR_ReturnCode ESR_SessionSetLCHARIfEmpty(const LCHAR* name, LCHAR* value)
184 ESR_ReturnCode ESR_SessionRemoveProperty(const LCHAR* name)
190 ESR_ReturnCode ESR_SessionRemoveAndFreeProperty(const LCHAR* name)
196 ESR_ReturnCode ESR_SessionImportCommandLine(int argc, LCHAR* argv[])
208 ESR_ReturnCode ESR_SessionGetKeyAtIndex(size_t index, LCHAR** key)
214 ESR_ReturnCode ESR_SessionConvertToInt(const LCHAR* key)
220 ESR_ReturnCode ESR_SessionConvertToUint16_t(const LCHAR* key)
226 ESR_ReturnCode ESR_SessionConvertToSize_t(const LCHAR* key)
232 ESR_ReturnCode ESR_SessionConvertToFloat(const LCHAR* key)
238 ESR_ReturnCode ESR_SessionConvertToBool(const LCHAR* key)
244 ESR_ReturnCode ESR_SessionGetPropertyType(const LCHAR* name, VariableTypes* type)
250 ESR_ReturnCode ESR_SessionImportParFile(const LCHAR* filename)
276 ESR_ReturnCode ESR_SessionPrefixWithBaseDirectory(LCHAR* path, size_t* len)
279 LCHAR baseDirectory[P_PATH_MAX];