AppGlobalF.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //---------------------------------------------------------------------------
  2. #ifndef AppGlobalFH
  3. #define AppGlobalFH
  4. //---------------------------------------------------------------------------
  5. #include <vcl.h>
  6. #include <assert.h>
  7. #include <stdio.h>
  8. #include <string.h>
  9. #include <inifiles.hpp>
  10. //---------------------------------------------------------------------------
  11. #include "ITSLogF.h"
  12. #include "ITSCommF.h"
  13. #include "ITSLibF.h"
  14. #include "ITSNetF.h"
  15. #include "CenterCommF.h"
  16. #include "VMSCommLibF.h"
  17. //---------------------------------------------------------------------------
  18. /*
  19. ******************************************************************************
  20. * Global function definitios
  21. ******************************************************************************
  22. */
  23. bool APP_LoadConfigInfo();
  24. bool APP_ReLoadConfigInfo();
  25. bool APP_ApplicationSingleInstance(AnsiString AProgName, AnsiString APidFile);
  26. bool APP_WriteConfigInfo(String ASection, String AItem, String AValue, String ACfgFile="");
  27. bool APP_ReadConfigInfo(String ASection, String AItem, String &AValue, String ACfgFile="");
  28. String APP_GetSysError();
  29. #endif