mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
feat(call): add stubbed call functions
This commit is contained in:
parent
5068af21cd
commit
689916d9c6
2 changed files with 37 additions and 0 deletions
23
common/Call.cpp
Normal file
23
common/Call.cpp
Normal 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
14
common/Call.hpp
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue