1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef CMAJOR_RT_CALL_STACK_INCLUDED
 7 #define CMAJOR_RT_CALL_STACK_INCLUDED
 8 #include <cmajor/rt/RtApi.hpp>
 9 #include <stdint.h>
10 
11 extern "C" void RtEnterFunction(const char* functionName, const char* sourceFilePath);
12 extern "C" void RtSetLineNumber(int32_t lineNumber);
13 extern "C" void RtExitFunction();
14 extern "C" void RtPrintCallStack(void* fileHandle);
15 extern "C" const char* RtGetStackTrace();
16 extern "C" void RtDisposeStackTrace();
17 
18 #endif // CMAJOR_RT_CALL_STACK_INCLUDED