feat(call): add stubbed call functions

This commit is contained in:
fallenoak 2023-01-01 15:33:13 -06:00
parent 5068af21cd
commit 689916d9c6
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 37 additions and 0 deletions

23
common/Call.cpp Normal file
View file

@ -0,0 +1,23 @@
#include "common/Call.hpp"
void OsCallDestroy() {
// TODO
}
void OsCallInitialize(const char* threadName) {
// TODO
}
void* OsCallInitializeContext(const char* contextName) {
// TODO
return nullptr;
}
void OsCallResetContext(void* contextDataPtr) {
// TODO
}
void OsCallSetContext(void* contextDataPtr) {
// TODO
}

14
common/Call.hpp Normal file
View file

@ -0,0 +1,14 @@
#ifndef COMMON_CALL_HPP
#define COMMON_CALL_HPP
void OsCallDestroy();
void OsCallInitialize(const char* threadName);
void* OsCallInitializeContext(const char* contextName);
void OsCallResetContext(void* contextDataPtr);
void OsCallSetContext(void* contextDataPtr);
#endif