2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 * Purpose: define basic common types and macros
28 /****** Common helper macros ***********************************************/
31 #define LOBYTE(w) ((unsigned char)(w))
34 #define HIBYTE(w) ((unsigned char)(((unsigned short)(w) >> 8) & 0xFF))
38 #define LOWORD(d) ((unsigned short)(d))
41 #define HIWORD(d) ((unsigned short)((((unsigned long)(d)) >> 16) & 0xFFFF))
44 #define LODWORD(q) ((q).u.dwLowDword)
45 #define HIDWORD(q) ((q).u.dwHighDword)
47 #if !defined(MAKEWORD)
48 #define MAKEWORD(lb, hb) ((unsigned short)(((unsigned char)(lb)) | (((unsigned short)((unsigned char)(hb))) << 8)))
50 #if !defined(MAKEDWORD)
51 #define MAKEDWORD(lw, hw) ((unsigned long)(((unsigned short)(lw)) | (((unsigned long)((unsigned short)(hw))) << 16)))
54 #endif /* __TMACRO_H__ */