Changeset 7070 for trunk/src


Ignore:
Timestamp:
Oct 16, 2001, 4:20:39 AM (24 years ago)
Author:
bird
Message:

Backup checkin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/kKrnlLib/include/kLog.h

    r7051 r7070  
    1 /* $Id: kLog.h,v 1.1 2001-10-14 22:52:16 bird Exp $
     1/* $Id: kLog.h,v 1.2 2001-10-16 02:20:39 bird Exp $
    22 *
    33 * kLog - Generic Logging and Trace Routines.
     
    5151
    5252
     53/*
     54 * RAS Data.
     55 */
     56#define KLOG_MAJOR          253
     57#define KLOG_MINOR          42
     58
     59
    5360/*******************************************************************************
    5461*   Structures and Typedefs                                                    *
     
    9097{
    9198    const char *            pszType;
     99    const char *            pszFormat;
    92100    unsigned short          fCurrent;
    93101    const unsigned short    fDefault;
     
    148156KBOOL       KLIBCALL kLogInitBuffer(unsigned long cbBufferSize);
    149157
    150 HKLOGMOD    KLIBCALL kLogInitMod(PKLOGMODDATA pModData, KLOGPOS_DECL);
    151 #define KLOGINITMOD(pModData)              kLogInitMod(pModData, KLOGPOS_EXT)
     158HKLOGMOD    KLIBCALL kLogInitMod(PKLOGMODDATA pMod, KLOGPOS_DECL);
     159void        KLIBCALL kLogEntry(HKLOGMOD hLogMod, KLOGPOS_DECL, const char *pszFuncProto, KBOOL fOptlink, ...);
     160void        KLIBCALL kLogExit(HKLOGMOD hLogMod, KLOGPOS_DECL, const char *pszReturnType, unsigned uReturn);
     161void        KLIBCALL kLog(HKLOGMOD hLogMod, KLOGPOS_DECL, int iType, ...);
    152162
    153 void        KLIBCALL kLog(HKLOGMOD hLogMod, int iType, KLOGPOS_DECL, ...);
     163#define KLOGINITMOD(pMod)                   kLogInitMod(pMod, KLOGPOS_EXT)
     164#define KLOGENTRY(hLogMod, pszFuncProto)        kLogEntry(hLogMod, KLOGPOS_EXT, pszFuncProto, FALSE)
     165#define KLOGEXIT(hLogMod, pszType, uValue)      kLogExit(hLogMod, KLOGPOS_EXT, pszType, uValue)
    154166
    155167
Note: See TracChangeset for help on using the changeset viewer.