update patch to work with build system changes
[AROS-Contrib.git] / Networking / Apps / OWB / searchbar.h
blob4d8b4af4d6231cb3e759b4eb5420f02ac4b71705
1 #ifndef _SEARCHBAR_H
2 #define _SEARCHBAR_H
4 /*
5 Copyright © 2009, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <utility/tagitem.h>
10 #include <libraries/mui.h>
12 /*** Identifier base ********************************************************/
13 #define MUIB_SearchBar (TAG_USER | 0x10000000)
15 /*** Public attributes ******************************************************/
17 /*** Private methods * ******************************************************/
18 #define MUIM_SearchBar_Find (MUIB_SearchBar | 0x00000000)
19 struct MUIP_SearchBar_Find {STACKED ULONG MethodID; STACKED BYTE forward;};
21 /*** Variables **************************************************************/
22 extern struct MUI_CustomClass *SearchBar_CLASS;
24 /*** Macros *****************************************************************/
25 #define SearchBarObject BOOPSIOBJMACRO_START(SearchBar_CLASS->mcc_Class)
27 struct OWB_SearchMsg
29 STRPTR criteria;
30 LONG caseSensitive;
31 LONG forward;
34 #endif /* _SEARCHBAR_H */