feat(kernel): add initial subsystem implementation files

This commit is contained in:
2025-04-07 04:51:05 +00:00
parent 58accf8acf
commit b1a30059ed
2 changed files with 18 additions and 0 deletions

View File

@ -16,3 +16,12 @@
*/
#include "../../kernel.h"
namespace Subsystem::Linux
{
bool Initialized = false;
void InitializeSubSystem()
{
}
}

View File

@ -16,3 +16,12 @@
*/
#include "../../kernel.h"
namespace Subsystem::Windows
{
bool Initialized = false;
void InitializeSubSystem()
{
}
}