Files
EHS/include/ehs/system/User.h
2024-07-24 01:36:20 -07:00

15 lines
254 B
C++

#pragma once
#include "ehs/EHS.h"
#include "ehs/Str.h"
namespace ehs
{
class EHS_LIB_IO User
{
public:
static void GetId(UInt_32* const real, UInt_32* const effective, UInt_32* const saved);
static Str_8 GetName();
};
}