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