- Timestamp:
- Oct 16, 2001, 4:20:39 AM (24 years ago)
- 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:16bird Exp $1 /* $Id: kLog.h,v 1.2 2001-10-16 02:20:39 bird Exp $ 2 2 * 3 3 * kLog - Generic Logging and Trace Routines. … … 51 51 52 52 53 /* 54 * RAS Data. 55 */ 56 #define KLOG_MAJOR 253 57 #define KLOG_MINOR 42 58 59 53 60 /******************************************************************************* 54 61 * Structures and Typedefs * … … 90 97 { 91 98 const char * pszType; 99 const char * pszFormat; 92 100 unsigned short fCurrent; 93 101 const unsigned short fDefault; … … 148 156 KBOOL KLIBCALL kLogInitBuffer(unsigned long cbBufferSize); 149 157 150 HKLOGMOD KLIBCALL kLogInitMod(PKLOGMODDATA pModData, KLOGPOS_DECL); 151 #define KLOGINITMOD(pModData) kLogInitMod(pModData, KLOGPOS_EXT) 158 HKLOGMOD KLIBCALL kLogInitMod(PKLOGMODDATA pMod, KLOGPOS_DECL); 159 void KLIBCALL kLogEntry(HKLOGMOD hLogMod, KLOGPOS_DECL, const char *pszFuncProto, KBOOL fOptlink, ...); 160 void KLIBCALL kLogExit(HKLOGMOD hLogMod, KLOGPOS_DECL, const char *pszReturnType, unsigned uReturn); 161 void KLIBCALL kLog(HKLOGMOD hLogMod, KLOGPOS_DECL, int iType, ...); 152 162 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) 154 166 155 167
Note:
See TracChangeset
for help on using the changeset viewer.