hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/******************************************************************************
 *
 * Copyright(c) 2007 - 2017 Realtek Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
#ifndef __BTC_BASIC_TYPES_H__
#define __BTC_BASIC_TYPES_H__
 
#define IN
#define OUT
#define VOID void
typedef void *PVOID;
 
#define u1Byte        u8
#define pu1Byte        u8*
 
#define u2Byte        u16
#define pu2Byte        u16*
 
#define u4Byte        u32
#define pu4Byte        u32*
 
#define u8Byte        u64
#define pu8Byte        u64*
 
#define s1Byte        s8
#define ps1Byte        s8*
 
#define s2Byte        s16
#define ps2Byte        s16*
 
#define s4Byte        s32
#define ps4Byte        s32*
 
#define s8Byte        s64
#define ps8Byte        s64*
 
#define UCHAR u8
#define USHORT u16
#define UINT u32
#define ULONG u32
#define PULONG u32*
 
#endif /* __BTC_BASIC_TYPES_H__ */