prism2.device: Compiler delint
[AROS.git] / workbench / prefs / network / netpeditor.h
blob6ed4cf7d46295bc46a4f1780f8e8a3380e0d2d13
1 #ifndef _FPEDITOR_H_
2 #define _FPEDITOR_H_
4 /*
5 Copyright © 2009-2010, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
10 #include <libraries/mui.h>
12 /*** Identifier base ********************************************************/
13 #define MUIB_NetPEditor (TAG_USER | 0x10000000)
15 /*** Variables **************************************************************/
16 extern struct MUI_CustomClass *NetPEditor_CLASS;
18 /*** Macros *****************************************************************/
19 #define NetPEditorObject BOOPSIOBJMACRO_START(NetPEditor_CLASS->mcc_Class)
21 #define MUIM_NetPEditor_IPModeChanged (MUIB_NetPEditor | 0x00000001)
22 #define MUIM_NetPEditor_ShowEntry (MUIB_NetPEditor | 0x00000002)
23 #define MUIM_NetPEditor_EditEntry (MUIB_NetPEditor | 0x00000003)
24 #define MUIM_NetPEditor_ApplyEntry (MUIB_NetPEditor | 0x00000004)
25 #define MUIM_NetPEditor_ShowNetEntry (MUIB_NetPEditor | 0x00000005)
26 #define MUIM_NetPEditor_EditNetEntry (MUIB_NetPEditor | 0x00000006)
27 #define MUIM_NetPEditor_ApplyNetEntry (MUIB_NetPEditor | 0x00000007)
29 struct MUIP_NetPEditor_EditEntry {STACKED ULONG MethodID; STACKED ULONG addEntry;};
30 struct MUIP_NetPEditor_EditNetEntry {STACKED ULONG MethodID; STACKED ULONG addEntry;};
31 struct MUIP_NetPEditor_IPModeChanged {STACKED ULONG MethodID; STACKED ULONG interface;};
33 #endif /* _FWPEDITOR_H_ */