2018-03-24 10:06:45 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 24.01.2018
|
|
|
|
*
|
|
|
|
* Buffer types
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
#if !defined(FRED_HOT_DIRECTORY_H)
|
|
|
|
#define FRED_HOT_DIRECTORY_H
|
|
|
|
|
|
|
|
struct Hot_Directory{
|
2019-06-01 23:58:28 +00:00
|
|
|
u8 string_space[256];
|
|
|
|
umem string_size;
|
|
|
|
u8 canon_dir_space[256];
|
|
|
|
umem canon_dir_size;
|
2018-03-24 10:06:45 +00:00
|
|
|
File_List file_list;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|