rpcsx/orbis-kernel/include/orbis/ipmi.hpp

20 lines
364 B
C++
Raw Normal View History

2023-07-29 23:44:24 +02:00
#pragma once
#include "KernelAllocator.hpp"
#include "utils/Rc.hpp"
namespace orbis {
struct IpmiServer : RcBase {
kstring name;
explicit IpmiServer(kstring name) : name(std::move(name)) {}
};
struct IpmiClient : RcBase {
Ref<IpmiServer> connection;
kstring name;
explicit IpmiClient(kstring name) : name(std::move(name)) {}
};
} // namespace orbis