Changeset 7751 for trunk/src/win32k/kKrnlLib/include/kKLstdarg.h
- Timestamp:
- Jan 9, 2002, 4:21:59 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/include/kKLstdarg.h
r7116 r7751 1 /* $Id: kKLstdarg.h,v 1. 1 2001-10-19 00:05:12bird Exp $1 /* $Id: kKLstdarg.h,v 1.2 2002-01-09 03:21:58 bird Exp $ 2 2 * 3 3 * Stdarg stuff, with additions to get around some SS != DS trouble. … … 20 20 #define va_start(ap, last) ap = ((va_list)SSToDS(&last)) + __nextword(last) 21 21 22 /* 23 * In order to get rid of the stupid warnings.. 24 */ 25 #undef va_arg 26 #define va_arg(ap, type) ((type *)(void *)((ap += (int) __nextword(type)) - __nextword(type)))[0] 27 28 22 29 #endif
Note:
See TracChangeset
for help on using the changeset viewer.