2019-10-03 02:58:05 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 01.10.2019
|
|
|
|
*
|
|
|
|
* Search list helper.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
#if !defined(FRED_SEARCH_LIST_H)
|
|
|
|
#define FRED_SEARCH_LIST_H
|
|
|
|
|
|
|
|
struct Path_Search_List{
|
|
|
|
List_String_Const_u8 list;
|
2019-12-18 03:38:08 +00:00
|
|
|
u64 max_member_length;
|
2019-10-03 02:58:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|