24 lines
267 B
C
24 lines
267 B
C
|
/*
|
||
|
* 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;
|
||
|
umem max_member_length;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// BOTTOM
|
||
|
|