Ignore:
Timestamp:
May 3, 2000, 12:46:07 PM (25 years ago)
Author:
bird
Message:

Changed and hopefully corrected code identifying the kernel type.

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:24 bird Exp $
     1/* $Id: macros.h,v 1.2 2000-05-03 10:46:07 bird Exp $
    22 *
    33 * Common macros for Win32k/Elf.
     
    2424#define ALIGN(a, alignment) (((a) + (alignment - 1UL)) & ~(alignment - 1UL))
    2525
     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
    2633#endif
Note: See TracChangeset for help on using the changeset viewer.