mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 19:57:51 +00:00
core: support offline web applet
This commit is contained in:
parent
953f05f76b
commit
7df27bbef6
32 changed files with 470 additions and 58 deletions
|
@ -58,6 +58,10 @@ class IDocumentInterface final : public ServiceFramework<IDocumentInterface> {
|
|||
public:
|
||||
explicit IDocumentInterface(Core::System& system_);
|
||||
~IDocumentInterface() override;
|
||||
|
||||
private:
|
||||
void ResolveApplicationContentPath(HLERequestContext& ctx);
|
||||
void GetRunningApplicationProgramId(HLERequestContext& ctx);
|
||||
};
|
||||
|
||||
class IDownloadTaskInterface final : public ServiceFramework<IDownloadTaskInterface> {
|
||||
|
@ -78,6 +82,17 @@ public:
|
|||
~IFactoryResetInterface() override;
|
||||
};
|
||||
|
||||
class IReadOnlyApplicationRecordInterface final
|
||||
: public ServiceFramework<IReadOnlyApplicationRecordInterface> {
|
||||
public:
|
||||
explicit IReadOnlyApplicationRecordInterface(Core::System& system_);
|
||||
~IReadOnlyApplicationRecordInterface() override;
|
||||
|
||||
private:
|
||||
void HasApplicationRecord(HLERequestContext& ctx);
|
||||
void IsDataCorruptedResult(HLERequestContext& ctx);
|
||||
};
|
||||
|
||||
class IReadOnlyApplicationControlDataInterface final
|
||||
: public ServiceFramework<IReadOnlyApplicationControlDataInterface> {
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue