mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-01 23:38:23 -04:00
ams: support building unit test programs on windows/linux/macos
This commit is contained in:
parent
9a38be201a
commit
64a97576d0
756 changed files with 33359 additions and 9372 deletions
|
@ -34,28 +34,28 @@ namespace ams::tipc {
|
|||
template<>
|
||||
class Out<CopyHandle> {
|
||||
private:
|
||||
os::NativeHandle * const m_ptr;
|
||||
tipc::NativeHandle * const m_ptr;
|
||||
public:
|
||||
ALWAYS_INLINE Out(os::NativeHandle *p) : m_ptr(p) { /* ... */ }
|
||||
ALWAYS_INLINE Out(tipc::NativeHandle *p) : m_ptr(p) { /* ... */ }
|
||||
|
||||
ALWAYS_INLINE void SetValue(os::NativeHandle v) const {
|
||||
ALWAYS_INLINE void SetValue(tipc::NativeHandle v) const {
|
||||
*m_ptr = v;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE const os::NativeHandle &GetValue() const {
|
||||
ALWAYS_INLINE const tipc::NativeHandle &GetValue() const {
|
||||
return *m_ptr;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE os::NativeHandle *GetPointer() const {
|
||||
ALWAYS_INLINE tipc::NativeHandle *GetPointer() const {
|
||||
return m_ptr;
|
||||
}
|
||||
|
||||
/* Convenience operators. */
|
||||
ALWAYS_INLINE os::NativeHandle &operator*() const {
|
||||
ALWAYS_INLINE tipc::NativeHandle &operator*() const {
|
||||
return *m_ptr;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE os::NativeHandle *operator->() const {
|
||||
ALWAYS_INLINE tipc::NativeHandle *operator->() const {
|
||||
return m_ptr;
|
||||
}
|
||||
};
|
||||
|
@ -63,28 +63,28 @@ namespace ams::tipc {
|
|||
template<>
|
||||
class Out<MoveHandle> {
|
||||
private:
|
||||
os::NativeHandle * const m_ptr;
|
||||
tipc::NativeHandle * const m_ptr;
|
||||
public:
|
||||
ALWAYS_INLINE Out(os::NativeHandle *p) : m_ptr(p) { /* ... */ }
|
||||
ALWAYS_INLINE Out(tipc::NativeHandle *p) : m_ptr(p) { /* ... */ }
|
||||
|
||||
ALWAYS_INLINE void SetValue(os::NativeHandle v) const {
|
||||
ALWAYS_INLINE void SetValue(tipc::NativeHandle v) const {
|
||||
*m_ptr = v;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE const os::NativeHandle &GetValue() const {
|
||||
ALWAYS_INLINE const tipc::NativeHandle &GetValue() const {
|
||||
return *m_ptr;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE os::NativeHandle *GetPointer() const {
|
||||
ALWAYS_INLINE tipc::NativeHandle *GetPointer() const {
|
||||
return m_ptr;
|
||||
}
|
||||
|
||||
/* Convenience operators. */
|
||||
ALWAYS_INLINE os::NativeHandle &operator*() const {
|
||||
ALWAYS_INLINE tipc::NativeHandle &operator*() const {
|
||||
return *m_ptr;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE os::NativeHandle *operator->() const {
|
||||
ALWAYS_INLINE tipc::NativeHandle *operator->() const {
|
||||
return m_ptr;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue