Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions include/nn/temp/temp.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ extern "C" {

typedef enum TEMPTargetPreference
{
TEMP_PREF_DEFAULT = 0,
TEMP_PREF_INTERNAL_STORAGE = 1,
//! Use whichever target has more available space
TEMP_PREF_DEFAULT = 0,
//! Always prefer USB
TEMP_PREF_USB = 1,
} TEMPTargetPreference;

typedef uint64_t TEMPDirId;
Expand All @@ -22,7 +24,7 @@ void
TEMPShutdown();

FSStatus
TEMPCreateAndInitTempDir(uint32_t size,
TEMPCreateAndInitTempDir(uint32_t maxSize,
TEMPTargetPreference pref,
TEMPDirId *outDir);

Expand Down