mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
9 lines
No EOL
325 B
C++
9 lines
No EOL
325 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace IPC {
|
|
constexpr std::uint32_t responseHeader(std::uint32_t commandID, std::uint32_t normalResponses, std::uint32_t translateResponses) {
|
|
// TODO: Maybe validate the response count stuff fits in 6 bits
|
|
return (commandID << 16) | (normalResponses << 6) | translateResponses;
|
|
}
|
|
} |