/
dimferon
/
AstrobloQ
Обзор
Документация
Войти
/
dimferon
/
AstrobloQ
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
source/actro/fcForm.cpp
31 строка
822 B
glscene
updated sources
25 дек 2024, 22:44
25 дек 2024, 22:44
55f2d3b
Код
Авторство
О чём код?
//--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop #include "fcForm.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TFormC *FormC; //--------------------------------------------------------------------------- __fastcall TFormC::TFormC(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TFormC::ReadIniFile() { TIniFile* IniFile; IniFile = new TIniFile(ChangeFileExt(ParamStr(0), ".ini")); try { // use correct argument names LangID = IniFile->ReadInteger("FormSettings", "rgLanguage", 0); } catch (Exception &exception) { IniFile->Free(); } }