mirror of
https://github.com/jakcron/nstool
synced 2024-11-14 09:46:39 +00:00
[hac|hac-hb] Adds missing includes.
This commit is contained in:
parent
d663efe30b
commit
6b5f90e683
12 changed files with 9 additions and 11 deletions
|
@ -1,3 +1,4 @@
|
|||
#include <cstring>
|
||||
#include <nn/hac/AssetHeader.h>
|
||||
|
||||
nn::hac::AssetHeader::AssetHeader()
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include <string>
|
||||
#include <cstring>
|
||||
#include <fnd/ISerialisable.h>
|
||||
#include <fnd/List.h>
|
||||
#include <nn/hac/cnmt.h>
|
||||
|
|
|
@ -55,9 +55,6 @@ namespace hac
|
|||
bool operator==(const NcaHeader& other) const;
|
||||
bool operator!=(const NcaHeader& other) const;
|
||||
|
||||
// to be used after export
|
||||
size_t getSize() const;
|
||||
|
||||
// export/import binary
|
||||
void toBytes();
|
||||
void fromBytes(const byte_t* bytes, size_t len);
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#pragma once
|
||||
#include <cstring>
|
||||
#include <nn/hac/nro.h>
|
||||
#include <fnd/ISerialisable.h>
|
||||
#include <fnd/List.h>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#pragma once
|
||||
#include <cstring>
|
||||
#include <nn/hac/nso.h>
|
||||
#include <fnd/ISerialisable.h>
|
||||
#include <fnd/List.h>
|
||||
|
|
|
@ -69,9 +69,6 @@ namespace hac
|
|||
bool operator==(const PfsHeader& other) const;
|
||||
bool operator!=(const PfsHeader& other) const;
|
||||
|
||||
// to be used after export
|
||||
size_t getSize() const;
|
||||
|
||||
// export/import binary
|
||||
void toBytes();
|
||||
void fromBytes(const byte_t* bytes, size_t len);
|
||||
|
|
|
@ -46,9 +46,6 @@ namespace hac
|
|||
// variables
|
||||
bool mIsServer;
|
||||
std::string mName;
|
||||
|
||||
bool isEqual(const ServiceAccessControlEntry& other) const;
|
||||
void copyFrom(const ServiceAccessControlEntry& other);
|
||||
};
|
||||
}
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
#pragma once
|
||||
#include <fnd/types.h>
|
||||
#include <fnd/sha.h>
|
||||
#include <nn/hac/macro.h>
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#include <cstring>
|
||||
#include <nn/hac/ApplicationControlPropertyBinary.h>
|
||||
|
||||
nn::hac::ApplicationControlPropertyBinary::ApplicationControlPropertyBinary()
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#include <cstring>
|
||||
#include <nn/hac/FileSystemAccessControlBinary.h>
|
||||
|
||||
#include <fnd/SimpleTextOutput.h>
|
||||
|
||||
nn::hac::FileSystemAccessControlBinary::FileSystemAccessControlBinary()
|
||||
{
|
||||
clear();
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#include <cstring>
|
||||
#include <nn/hac/ServiceAccessControlBinary.h>
|
||||
|
||||
nn::hac::ServiceAccessControlBinary::ServiceAccessControlBinary()
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#include <cstring>
|
||||
#include <nn/hac/ServiceAccessControlEntry.h>
|
||||
|
||||
nn::hac::ServiceAccessControlEntry::ServiceAccessControlEntry()
|
||||
|
|
Loading…
Reference in a new issue