1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef CMAJOR_RT_DEBUG_INCLUDED
 7 #define CMAJOR_RT_DEBUG_INCLUDED
 8 #include <stdint.h>
 9 
10 namespace cmajor { namespace rt {
11 
12 void StartCmdbSession();
13 bool IsCmdbSessionOpen();
14 void WriteBytesToCmdbSession(int fileHandleconst uint8_t* bufferint64_t count);
15 int64_t ReadBytesFromCmdbSession(uint8_t* bufferint64_t bufferSize);
16 void InitCmdbSession();
17 void DoneCmdbSession();
18 
19 } } // namespace cmajor::rt
20 
21 #endif // CMAJOR_RT_DEBUG_INCLUDED