12345678910111213141516171819202122232425262728293031323334 |
- //---------------------------------------------------------------------------
- #ifndef AppGlobalFH
- #define AppGlobalFH
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #include <assert.h>
- #include <stdio.h>
- #include <string.h>
- #include <inifiles.hpp>
- //---------------------------------------------------------------------------
- #include "ITSLogF.h"
- #include "ITSCommF.h"
- #include "ITSLibF.h"
- #include "ITSNetF.h"
- #include "CenterCommF.h"
- #include "VMSCommLibF.h"
- //---------------------------------------------------------------------------
- /*
- ******************************************************************************
- * Global function definitios
- ******************************************************************************
- */
- bool APP_LoadConfigInfo();
- bool APP_ReLoadConfigInfo();
- bool APP_ApplicationSingleInstance(AnsiString AProgName, AnsiString APidFile);
- bool APP_WriteConfigInfo(String ASection, String AItem, String AValue, String ACfgFile="");
- bool APP_ReadConfigInfo(String ASection, String AItem, String &AValue, String ACfgFile="");
- String APP_GetSysError();
- #endif
|