Home
last modified time | relevance | path

Searched refs:ItemValue (Results 1 – 4 of 4) sorted by relevance

/reactos/boot/freeldr/freeldr/lib/inifile/
H A Dinifile.c113 return (ULONG)(strlen(SectionItem->ItemValue) + 1); in IniGetSectionSettingValueSize()
133 TRACE("IniReadSettingByNumber() Setting value = %s\n", SectionItem->ItemValue); in IniReadSettingByNumber()
140 strncpy(SettingValue, SectionItem->ItemValue, ValueSize - 1); in IniReadSettingByNumber()
170 strncpy(Buffer, SectionItem->ItemValue, BufferSize - 1); in IniReadSettingByName()
230 FrLdrTempFree(SectionItem->ItemValue, TAG_INI_VALUE); in IniFreeSection()
278 SectionItem->ItemValue = FrLdrTempAlloc(strlen(SettingValue) + 1, TAG_INI_VALUE); in IniAddSettingValueToSection()
279 if (!SectionItem->ItemValue) in IniAddSettingValueToSection()
287 strcpy(SectionItem->ItemValue, SettingValue); in IniAddSettingValueToSection()
330 FrLdrTempFree(SectionItem->ItemValue, TAG_INI_VALUE); in IniModifySettingValue()
331 SectionItem->ItemValue = NewItemValue; in IniModifySettingValue()
[all …]
H A Dparse.c152 …CurrentItem->ItemValue = FrLdrTempAlloc(IniGetSettingValueSize(IniFileLine, LineLength), TAG_INI_V… in IniParseFile()
153 if (!CurrentItem->ItemValue) in IniParseFile()
163 IniExtractSettingValue(CurrentItem->ItemValue, IniFileLine, LineLength); in IniParseFile()
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/uiports/
H A Dqtewin.cpp166 QString ItemValue; in QMyDialog() local
284 ItemValue = Line.mid(j + 1); in QMyDialog()
285 CleanString(&ItemValue); in QMyDialog()
289 ConnectionList[i]->ServerName = ItemValue; in QMyDialog()
290 ListBox->insertItem(ItemValue); in QMyDialog()
293 ConnectionList[i]->UserName = ItemValue; in QMyDialog()
295 ConnectionList[i]->Width = ItemValue.toInt(); in QMyDialog()
297 ConnectionList[i]->Height = ItemValue.toInt(); in QMyDialog()
299 ConnectionList[i]->ServerIP = ItemValue; in QMyDialog()
301 ConnectionList[i]->FullScreen = (ItemValue != "0"); in QMyDialog()
/reactos/boot/freeldr/freeldr/include/
H A Dinifile.h37 PCHAR ItemValue; member