EHS/include/ehs/system/User.h

15 lines
254 B
C
Raw Permalink Normal View History

2024-02-05 22:25:30 -08:00
#pragma once
#include "ehs/EHS.h"
#include "ehs/Str.h"
namespace ehs
{
2024-07-24 01:36:20 -07:00
class EHS_LIB_IO User
2024-02-05 22:25:30 -08:00
{
public:
static void GetId(UInt_32* const real, UInt_32* const effective, UInt_32* const saved);
static Str_8 GetName();
};
}