1
2
3
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 fileHandle, const uint8_t* buffer, int64_t count);
15 int64_t ReadBytesFromCmdbSession(uint8_t* buffer, int64_t bufferSize);
16 void InitCmdbSession();
17 void DoneCmdbSession();
18
19 } }
20
21 #endif // CMAJOR_RT_DEBUG_INCLUDED