Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
dot11decrypt_interop.h
1 /* dot11decrypt_interop.h
2  *
3  * Copyright (c) 2006 CACE Technologies, Davis (California)
4  * All rights reserved.
5  *
6  * SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only)
7  */
8 
9 #ifndef _DOT11DECRYPT_INTEROP_H
10 #define _DOT11DECRYPT_INTEROP_H
11 
17 #include <glib.h>
18 #include <string.h>
19 
20 #ifndef INT
21 typedef gint INT;
22 #endif
23 
24 #ifndef UINT
25 typedef guint UINT;
26 #endif
27 
28 #ifndef UINT8
29 typedef guint8 UINT8;
30 #endif
31 
32 #ifndef UINT16
33 typedef guint16 UINT16;
34 #endif
35 
36 #ifndef UINT32
37 typedef guint32 UINT32;
38 #endif
39 
40 #ifndef UINT64
41 typedef guint64 UINT64;
42 #endif
43 
44 #ifndef USHORT
45 typedef gushort USHORT;
46 #endif
47 
48 #ifndef ULONG
49 typedef gulong ULONG;
50 #endif
51 
52 #ifndef ULONGLONG
53 typedef guint64 ULONGLONG;
54 #endif
55 
56 #ifndef CHAR
57 typedef gchar CHAR;
58 #endif
59 
60 #ifndef UCHAR
61 typedef guchar UCHAR;
62 #endif
63 
64 #endif /* _DOT11DECRYPT_INTEROP_H */