mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-21 16:10:47 +01:00
19 lines
350 B
C++
19 lines
350 B
C++
#pragma once
|
|
|
|
#include "KernelAllocator.hpp"
|
|
#include "file.hpp"
|
|
#include "utils/Rc.hpp"
|
|
#include "utils/SharedCV.hpp"
|
|
#include "utils/SharedMutex.hpp"
|
|
#include <utility>
|
|
|
|
namespace orbis {
|
|
struct Pipe final : File {
|
|
shared_cv cv;
|
|
kvector<std::byte> data;
|
|
Ref<Pipe> other;
|
|
};
|
|
|
|
std::pair<Ref<Pipe>, Ref<Pipe>> createPipe();
|
|
} // namespace orbis
|