🎉 Added files

This commit is contained in:
2025-01-26 18:33:45 +01:00
commit 40149d87b3
301 changed files with 81911 additions and 0 deletions

27
raydium/path.h Normal file
View File

@@ -0,0 +1,27 @@
/*
Raydium - CQFD Corp.
http://raydium.org/
License: GPL - GNU General Public License, see "gpl.txt" file.
*/
#ifndef PATH_H
#define PATH_H
#define RAYDIUM_MAX_PATHS 32
#define RAYDIUM_PATH_MODE_READ 1
#define RAYDIUM_PATH_MODE_WRITE 2 // not used yet
typedef struct raydium_path_Path
{
signed char state;
char path[RAYDIUM_MAX_DIR_LEN];
char ext[RAYDIUM_MAX_NAME_LEN];
int priority; // not used yet, see path deletion
signed char mode;
} raydium_path_Path;
raydium_path_Path raydium_path_paths[RAYDIUM_MAX_PATHS];
char raydium_path_write_current[RAYDIUM_MAX_DIR_LEN];
#endif