mirror of
https://github.com/jakcron/nstool
synced 2024-11-14 17:56: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>
|
#include <nn/hac/AssetHeader.h>
|
||||||
|
|
||||||
nn::hac::AssetHeader::AssetHeader()
|
nn::hac::AssetHeader::AssetHeader()
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <cstring>
|
||||||
#include <fnd/ISerialisable.h>
|
#include <fnd/ISerialisable.h>
|
||||||
#include <fnd/List.h>
|
#include <fnd/List.h>
|
||||||
#include <nn/hac/cnmt.h>
|
#include <nn/hac/cnmt.h>
|
||||||
|
|
|
@ -55,9 +55,6 @@ namespace hac
|
||||||
bool operator==(const NcaHeader& other) const;
|
bool operator==(const NcaHeader& other) const;
|
||||||
bool operator!=(const NcaHeader& other) const;
|
bool operator!=(const NcaHeader& other) const;
|
||||||
|
|
||||||
// to be used after export
|
|
||||||
size_t getSize() const;
|
|
||||||
|
|
||||||
// export/import binary
|
// export/import binary
|
||||||
void toBytes();
|
void toBytes();
|
||||||
void fromBytes(const byte_t* bytes, size_t len);
|
void fromBytes(const byte_t* bytes, size_t len);
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#include <cstring>
|
||||||
#include <nn/hac/nro.h>
|
#include <nn/hac/nro.h>
|
||||||
#include <fnd/ISerialisable.h>
|
#include <fnd/ISerialisable.h>
|
||||||
#include <fnd/List.h>
|
#include <fnd/List.h>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#include <cstring>
|
||||||
#include <nn/hac/nso.h>
|
#include <nn/hac/nso.h>
|
||||||
#include <fnd/ISerialisable.h>
|
#include <fnd/ISerialisable.h>
|
||||||
#include <fnd/List.h>
|
#include <fnd/List.h>
|
||||||
|
|
|
@ -69,9 +69,6 @@ namespace hac
|
||||||
bool operator==(const PfsHeader& other) const;
|
bool operator==(const PfsHeader& other) const;
|
||||||
bool operator!=(const PfsHeader& other) const;
|
bool operator!=(const PfsHeader& other) const;
|
||||||
|
|
||||||
// to be used after export
|
|
||||||
size_t getSize() const;
|
|
||||||
|
|
||||||
// export/import binary
|
// export/import binary
|
||||||
void toBytes();
|
void toBytes();
|
||||||
void fromBytes(const byte_t* bytes, size_t len);
|
void fromBytes(const byte_t* bytes, size_t len);
|
||||||
|
|
|
@ -46,9 +46,6 @@ namespace hac
|
||||||
// variables
|
// variables
|
||||||
bool mIsServer;
|
bool mIsServer;
|
||||||
std::string mName;
|
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/types.h>
|
||||||
#include <fnd/sha.h>
|
#include <fnd/sha.h>
|
||||||
#include <nn/hac/macro.h>
|
#include <nn/hac/macro.h>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include <cstring>
|
||||||
#include <nn/hac/ApplicationControlPropertyBinary.h>
|
#include <nn/hac/ApplicationControlPropertyBinary.h>
|
||||||
|
|
||||||
nn::hac::ApplicationControlPropertyBinary::ApplicationControlPropertyBinary()
|
nn::hac::ApplicationControlPropertyBinary::ApplicationControlPropertyBinary()
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
|
#include <cstring>
|
||||||
#include <nn/hac/FileSystemAccessControlBinary.h>
|
#include <nn/hac/FileSystemAccessControlBinary.h>
|
||||||
|
|
||||||
#include <fnd/SimpleTextOutput.h>
|
|
||||||
|
|
||||||
nn::hac::FileSystemAccessControlBinary::FileSystemAccessControlBinary()
|
nn::hac::FileSystemAccessControlBinary::FileSystemAccessControlBinary()
|
||||||
{
|
{
|
||||||
clear();
|
clear();
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include <cstring>
|
||||||
#include <nn/hac/ServiceAccessControlBinary.h>
|
#include <nn/hac/ServiceAccessControlBinary.h>
|
||||||
|
|
||||||
nn::hac::ServiceAccessControlBinary::ServiceAccessControlBinary()
|
nn::hac::ServiceAccessControlBinary::ServiceAccessControlBinary()
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include <cstring>
|
||||||
#include <nn/hac/ServiceAccessControlEntry.h>
|
#include <nn/hac/ServiceAccessControlEntry.h>
|
||||||
|
|
||||||
nn::hac::ServiceAccessControlEntry::ServiceAccessControlEntry()
|
nn::hac::ServiceAccessControlEntry::ServiceAccessControlEntry()
|
||||||
|
|
Loading…
Reference in a new issue