4coder/4ed_hot_directory.h

27 lines
327 B
C
Raw Normal View History

/*
* 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{
char string_space[256];
char canon_dir_space[256];
String string;
String canon_dir;
File_List file_list;
};
#endif
// BOTTOM