diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-11 23:49:22 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-13 00:04:48 +0200 |
commit | 8db26a7350aad53ed73a127f9b8eb6ef15bf0be1 (patch) | |
tree | 5fd5f331d61e20ba89b6ae00c4b387b1e72796f1 /deimos/core/api_registry.cpp | |
parent | a2671839daddfaaec63f43132854c606c556558a (diff) |
Implement Status
Diffstat (limited to 'deimos/core/api_registry.cpp')
-rw-r--r-- | deimos/core/api_registry.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/deimos/core/api_registry.cpp b/deimos/core/api_registry.cpp index 81dabf0..41c0257 100644 --- a/deimos/core/api_registry.cpp +++ b/deimos/core/api_registry.cpp @@ -9,6 +9,7 @@ namespace deimos AllocatorApi* BootstrapAllocatorApi();
void RegisterOsApi(ApiRegistry*);
void RegisterLogApi(ApiRegistry*);
+void InitializeStatus(ApiRegistry*);
struct ApiEntry
{
@@ -56,6 +57,7 @@ ApiRegistry* InitializeGlobalApiRegistry() api_registry->Set(g_allocator_api);
+ InitializeStatus(api_registry);
RegisterOsApi(api_registry);
RegisterLogApi(api_registry);
|