mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-09 06:19:16 +00:00
Updated tasking
This commit is contained in:
39
Tasking/Security.cpp
Normal file
39
Tasking/Security.cpp
Normal file
@ -0,0 +1,39 @@
|
||||
#include <task.hpp>
|
||||
#include <debug.h>
|
||||
|
||||
namespace Tasking
|
||||
{
|
||||
Token Security::CreateToken()
|
||||
{
|
||||
fixme("CreateToken->0");
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool Security::TrustToken(Token token,
|
||||
TokenTrustLevel TrustLevel)
|
||||
{
|
||||
fixme("TrustToken->false");
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Security::UntrustToken(Token token)
|
||||
{
|
||||
fixme("UntrustToken->false");
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Security::DestroyToken(Token token)
|
||||
{
|
||||
fixme("DestroyToken->false");
|
||||
return false;
|
||||
}
|
||||
|
||||
Security::Security()
|
||||
{
|
||||
trace("Initializing Tasking Security");
|
||||
}
|
||||
|
||||
Security::~Security()
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user