[ox/std] Add init hook to tracing system

This commit is contained in:
2021-03-08 20:10:46 -06:00
parent 51387eea3a
commit 662c2e11de
3 changed files with 19 additions and 2 deletions

View File

@@ -6,8 +6,14 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
extern "C"
extern "C" {
void oxTraceInitHook() {
}
void oxTraceHook([[maybe_unused]] const char *file, [[maybe_unused]] int line,
[[maybe_unused]] const char *ch, [[maybe_unused]] const char *msg) {
}
}