mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
15 lines
No EOL
250 B
C++
15 lines
No EOL
250 B
C++
#pragma once
|
|
#include <nn/hac/nacp.h>
|
|
|
|
namespace nn
|
|
{
|
|
namespace hac
|
|
{
|
|
class ApplicationControlPropertyUtils
|
|
{
|
|
public:
|
|
static bool validateSaveDataSizeMax(int64_t size, int64_t alignment);
|
|
static bool validateSaveDataSize(int64_t size);
|
|
};
|
|
}
|
|
} |