2018-03-24 10:06:45 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 20.02.2016
|
|
|
|
*
|
|
|
|
* GUI system for 4coder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
2016-05-25 02:12:49 +00:00
|
|
|
|
2018-03-26 05:19:08 +00:00
|
|
|
#ifndef FRED_GUI_H
|
|
|
|
#define FRED_GUI_H
|
2016-05-25 02:12:49 +00:00
|
|
|
|
2018-03-24 10:06:45 +00:00
|
|
|
struct Query_Slot{
|
|
|
|
Query_Slot *next;
|
|
|
|
Query_Bar *query_bar;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Query_Set{
|
|
|
|
Query_Slot slots[8];
|
|
|
|
Query_Slot *free_slot;
|
|
|
|
Query_Slot *used_slot;
|
|
|
|
};
|
|
|
|
|
2016-05-25 02:12:49 +00:00
|
|
|
#endif
|
2018-03-24 10:06:45 +00:00
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|