Changeset 7751 for trunk/src


Ignore:
Timestamp:
Jan 9, 2002, 4:21:59 AM (24 years ago)
Author:
bird
Message:

Logging is more or less complete now.

Location:
trunk/src/win32k/kKrnlLib/include
Files:
2 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:12 bird Exp $
     1/* $Id: kKLstdarg.h,v 1.2 2002-01-09 03:21:58 bird Exp $
    22 *
    33 * Stdarg stuff, with additions to get around some SS != DS trouble.
     
    2020#define va_start(ap, last) ap = ((va_list)SSToDS(&last)) + __nextword(last)
    2121
     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
    2229#endif
  • trunk/src/win32k/kKrnlLib/include/kLog.h

    r7389 r7751  
    1 /* $Id: kLog.h,v 1.10 2001-11-19 03:09:40 bird Exp $
     1/* $Id: kLog.h,v 1.11 2002-01-09 03:21:59 bird Exp $
    22 *
    33 * kLog - Generic Logging and Trace Routines.
     
    4040 */
    4141#define KLOG_TYPEDEF_PTR        0x8000  /* flags this typedef as a pointer. */
     42#define KLOG_TYPEDEF_ARRAY      0x4000  /* flags this typedef as an array. */
    4243#define KLOG_TYPEDEF_SIZE       0x0fff  /* Mask to get the size. */
    4344
Note: See TracChangeset for help on using the changeset viewer.