summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns_types.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 20:22:15 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:35:39 +0100
commit2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237 (patch)
treea0e730535f063c5154c5eeac4e329fefc053d4dd /src/core/hle/service/ns/ns_types.h
parentns: move IDevelopInterface (diff)
downloadyuzu-2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237.tar
yuzu-2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237.tar.gz
yuzu-2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237.tar.bz2
yuzu-2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237.tar.lz
yuzu-2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237.tar.xz
yuzu-2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237.tar.zst
yuzu-2e96921f9cbd7e8eab6c6b8e94bdbe1a5ccd7237.zip
Diffstat (limited to 'src/core/hle/service/ns/ns_types.h')
-rw-r--r--src/core/hle/service/ns/ns_types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/ns_types.h b/src/core/hle/service/ns/ns_types.h
index 9b6b3aa2d..37ff078bd 100644
--- a/src/core/hle/service/ns/ns_types.h
+++ b/src/core/hle/service/ns/ns_types.h
@@ -4,6 +4,7 @@
#pragma once
#include "common/common_funcs.h"
+#include "common/uuid.h"
#include "core/file_sys/romfs_factory.h"
namespace Service::NS {
@@ -54,6 +55,14 @@ struct ApplicationView {
u8 unk_x45[0xb]; ///< Unknown.
};
+struct ApplicationRightsOnClient {
+ u64 application_id;
+ Common::UUID uid;
+ u8 flags;
+ u8 flags2;
+ INSERT_PADDING_BYTES(0x6);
+};
+
/// NsPromotionInfo
struct PromotionInfo {
u64 start_timestamp; ///< POSIX timestamp for the promotion start.