revert between 56095 -> 55830 in arch
[AROS.git] / workbench / network / common / include / libraries / miami.h
blob4b9201ac10c2c38a35ca454273c2221b8253231e
1 #ifndef LIBRARIES_MIAMI_H
2 #define LIBRARIES_MIAMI_H
4 #ifndef UTILITY_TAGITEM_H
5 #include <utility/tagitem.h>
6 #endif
8 /*
9 ** $VER: libraries/miami.h 2.11 (25.12.97)
11 ** C prototypes. For use with 32 bit integers only.
13 ** (C) Copyright 1997 Nordic Global Inc.
14 ** All Rights Reserved
17 struct MiamiPFBuffer {
18 unsigned long flags; /* currently unused */
19 unsigned char *data;
20 unsigned long length;
21 unsigned char *name;
22 unsigned char itype; /* interface type MIAMIPFBIT_... */
23 unsigned char ptype; /* packet type MIAMIPFBPT_... */
24 unsigned char pad[2];
27 #define MIAMIPFBIT_LOOP 0
28 #define MIAMIPFBIT_BUILTIN 1
30 #define MIAMIPFBPT_IP 0
31 #define MIAMIPFBPT_ARP 1
34 #define MIAMICPU_M68KREG 1
35 #define MIAMICPU_PPCV4 2
37 #define MIAMITAG_DUMMY (TAG_USER+0x570000)
38 #define MIAMITAG_HOOKTYPE (MIAMITAG_DUMMY+1)
40 #endif