enum FSOBJECT_TYPE for object type : File / Directory / Drive

This commit is contained in:
Thomas Bernard
2018-12-08 19:11:57 +01:00
parent 83d2b5de7a
commit 7e3e39a753
6 changed files with 50 additions and 68 deletions

View File

@@ -181,7 +181,7 @@ typedef struct T_Dropdown_button
/// Data for one item (file, directory) in a fileselector.
typedef struct T_Fileselector_item
{
byte Type; ///< Type of item: 0 = File, 1 = Directory, 2 = Drive
enum FSOBJECT_TYPE Type; ///< Type of item: 0 = File, 1 = Directory, 2 = Drive
byte Icon; ///< One of ::ICON_TYPES, ICON_NONE for none.
struct T_Fileselector_item * Next; ///< Pointer to next item of the current fileselector.