summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfp/nfp_device.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-04-14 06:23:49 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-04-15 01:03:58 +0200
commit307371e01d403c376a030d3a708d808659394bf5 (patch)
treec17c55848640d98131ca9a701d38b56208e391ee /src/core/hle/service/nfp/nfp_device.h
parentservice: nfp: Implement system interface (diff)
downloadyuzu-307371e01d403c376a030d3a708d808659394bf5.tar
yuzu-307371e01d403c376a030d3a708d808659394bf5.tar.gz
yuzu-307371e01d403c376a030d3a708d808659394bf5.tar.bz2
yuzu-307371e01d403c376a030d3a708d808659394bf5.tar.lz
yuzu-307371e01d403c376a030d3a708d808659394bf5.tar.xz
yuzu-307371e01d403c376a030d3a708d808659394bf5.tar.zst
yuzu-307371e01d403c376a030d3a708d808659394bf5.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nfp/nfp_device.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/hle/service/nfp/nfp_device.h b/src/core/hle/service/nfp/nfp_device.h
index 0d778c1d7..bab05538a 100644
--- a/src/core/hle/service/nfp/nfp_device.h
+++ b/src/core/hle/service/nfp/nfp_device.h
@@ -41,7 +41,10 @@ public:
Result StopDetection();
Result Mount(MountTarget mount_target);
Result Unmount();
+
Result Flush();
+ Result FlushDebug();
+ Result FlushWithBreak(BreakType break_type);
Result GetTagInfo(TagInfo& tag_info) const;
Result GetCommonInfo(CommonInfo& common_info) const;
@@ -64,6 +67,13 @@ public:
Result DeleteApplicationArea();
Result ExistApplicationArea(bool& has_application_area);
+ Result GetAll(NfpData& data) const;
+ Result SetAll(const NfpData& data);
+ Result BreakTag(BreakType break_type);
+ Result ReadBackupData();
+ Result WriteBackupData();
+ Result WriteNtf();
+
u64 GetHandle() const;
u32 GetApplicationAreaSize() const;
DeviceState GetCurrentState() const;