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

14 lines
211 B
C++
Raw Normal View History

#pragma once
#include "KernelAllocator.hpp"
#include "file.hpp"
#include "utils/Rc.hpp"
namespace orbis {
struct Pipe final : File {
kvector<std::byte> data;
};
Ref<Pipe> createPipe();
} // namespace orbis