Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

CCFUtilsConcurrent.h 901 B

1234567891011121314151617181920212223242526272829303132
  1. //////////////////////////////////////////////////////////////////////
  2. //
  3. // (c) Copyright 2012 - 2013 Blackrock Microsystems
  4. //
  5. // $Workfile: CCFUtilsConcurrent.h $
  6. // $Archive: /Cerebus/Human/WindowsApps/cbhwlib/CCFUtilsConcurrent.h $
  7. // $Revision: 1 $
  8. // $Date: 4/10/12 1:40p $
  9. // $Author: Ehsan $
  10. //
  11. // $NoKeywords: $
  12. //
  13. //////////////////////////////////////////////////////////////////////
  14. //
  15. // Purpose: Concurrent access to CCF utilities
  16. //
  17. #ifndef CCFUTILSCONCURRENT_H_INCLUDED
  18. #define CCFUTILSCONCURRENT_H_INCLUDED
  19. #include "cbhwlib.h"
  20. #include "CCFUtils.h"
  21. // Namespace for Cerebus Config Files
  22. namespace ccf
  23. {
  24. void ConReadCCF(LPCSTR szFileName, bool bSend, cbCCF * pCCF, cbCCFCallback pCallbackFn, uint32_t nInstance);
  25. void ConWriteCCF(LPCSTR szFileName, cbCCF * pCCF, cbCCFCallback pCallbackFn, uint32_t nInstance);
  26. };
  27. #endif // include guard