mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[Win32k]
DbgLogEvent: replace EVENT_TYPE by LOG_EVENT_TYPE (spotted by GCC 4.6). svn path=/trunk/; revision=52839
This commit is contained in:
parent
b91502ff16
commit
a96df8f6f2
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ typedef struct _LOGENTRY
|
|||
|
||||
#if DBG_ENABLE_EVENT_LOGGING
|
||||
VOID NTAPI DbgDumpEventList(PSLIST_HEADER pslh);
|
||||
VOID NTAPI DbgLogEvent(PSLIST_HEADER pslh, EVENT_TYPE nEventType, LPARAM lParam);
|
||||
VOID NTAPI DbgLogEvent(PSLIST_HEADER pslh, LOG_EVENT_TYPE nEventType, LPARAM lParam);
|
||||
VOID NTAPI DbgCleanupEventList(PSLIST_HEADER pslh);
|
||||
#define DBG_LOGEVENT(pslh, type, val) DbgLogEvent(pslh, type, (ULONG_PTR)val)
|
||||
#define DBG_INITLOG(pslh) InitializeSListHead(pslh)
|
||||
|
|
|
@ -305,7 +305,7 @@ DbgDumpLockedGdiHandles()
|
|||
|
||||
VOID
|
||||
NTAPI
|
||||
DbgLogEvent(PSLIST_HEADER pslh, EVENT_TYPE nEventType, LPARAM lParam)
|
||||
DbgLogEvent(PSLIST_HEADER pslh, LOG_EVENT_TYPE nEventType, LPARAM lParam)
|
||||
{
|
||||
PLOGENTRY pLogEntry;
|
||||
|
||||
|
|
Loading…
Reference in a new issue