Files
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

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