• Home
  • Raw
  • Download

Lines Matching refs:LCHAR

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