mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
23 lines
474 B
C
23 lines
474 B
C
#ifndef RVL_SDK_NAND_CHECK_H
|
|
#define RVL_SDK_NAND_CHECK_H
|
|
#include "common.h"
|
|
#include "rvl/NAND/nand.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
NAND_CHECK_TOO_MANY_APP_BLOCKS = (1 << 0),
|
|
NAND_CHECK_TOO_MANY_APP_FILES = (1 << 1),
|
|
NAND_CHECK_TOO_MANY_USER_BLOCKS = (1 << 2),
|
|
NAND_CHECK_TOO_MANY_USER_FILES = (1 << 3),
|
|
} NANDCheckFlags;
|
|
|
|
NANDResult NANDCheck(u32 neededBlocks, u32 neededFiles, u32 *answer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|