Changeset 3485 for trunk/src/win32k/include/macros.h
- Timestamp:
- May 3, 2000, 12:46:07 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/macros.h
r2500 r3485 1 /* $Id: macros.h,v 1. 1 2000-01-22 16:34:24bird Exp $1 /* $Id: macros.h,v 1.2 2000-05-03 10:46:07 bird Exp $ 2 2 * 3 3 * Common macros for Win32k/Elf. … … 24 24 #define ALIGN(a, alignment) (((a) + (alignment - 1UL)) & ~(alignment - 1UL)) 25 25 26 27 /* 28 * Makes an unsigned long from 4 (unsigned or signed) chars. 29 */ 30 #define MAKEULONG4(ch1, ch2, ch3, ch4) \ 31 ((ULONG)(MAKEULONG(MAKEUSHORT(ch1, ch2), MAKEUSHORT(ch3, ch4)))) 32 26 33 #endif
Note:
See TracChangeset
for help on using the changeset viewer.