ams: support building unit test programs on windows/linux/macos

This commit is contained in:
Michael Scire 2022-03-06 12:08:20 -08:00 committed by SciresM
parent 9a38be201a
commit 64a97576d0
756 changed files with 33359 additions and 9372 deletions

View file

@ -16,10 +16,14 @@
#pragma once
#include <stratosphere.hpp>
#include "sm_ams.h"
#if defined(ATMOSPHERE_OS_HORIZON)
#include "sm_ams.os.horizon.h"
#endif
namespace ams::sm::impl {
#if defined(ATMOSPHERE_OS_HORIZON)
/* Utilities. */
os::SdkRecursiveMutex &GetMitmAcknowledgementSessionMutex();
os::SdkRecursiveMutex &GetPerThreadSessionMutex();
@ -52,5 +56,6 @@ namespace ams::sm::impl {
static_assert(sizeof(SmServiceName) == sizeof(sm::ServiceName));
return std::bit_cast<SmServiceName>(name);
}
#endif
}