mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-29 04:54:14 +01:00
7cf7999e02
Currently only CopyHandle, MoveHandle and CallingPid descriptors are implemented.
15 lines
495 B
C++
15 lines
495 B
C++
// Copyright 2017 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
namespace Kernel {
|
|
/// Performs IPC command buffer translation from one process to another.
|
|
ResultCode TranslateCommandBuffer(SharedPtr<Thread> src_thread, SharedPtr<Thread> dst_thread,
|
|
VAddr src_address, VAddr dst_address);
|
|
} // namespace Kernel
|