mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[EVENTLOG]
* Do not include debug.h into the main header. CORE-7716 svn path=/trunk/; revision=61315
This commit is contained in:
parent
5170eaeaaf
commit
359a887df3
6 changed files with 15 additions and 2 deletions
|
@ -11,6 +11,9 @@
|
|||
|
||||
#include "eventlog.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
/* GLOBALS ******************************************************************/
|
||||
|
||||
static VOID CALLBACK ServiceMain(DWORD, LPWSTR *);
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
#ifndef __EVENTLOG_H__
|
||||
#define __EVENTLOG_H__
|
||||
|
||||
#define NDEBUG
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -22,7 +21,6 @@
|
|||
#include <rtlfuncs.h>
|
||||
#include <obfuncs.h>
|
||||
#include <iofuncs.h>
|
||||
#include <debug.h>
|
||||
#include <eventlogrpc_s.h>
|
||||
|
||||
typedef struct _IO_ERROR_LPC
|
||||
|
|
|
@ -10,6 +10,9 @@
|
|||
|
||||
#include "eventlog.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
static LIST_ENTRY EventSourceListHead;
|
||||
static CRITICAL_SECTION EventSourceListCs;
|
||||
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
|
||||
#include "eventlog.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
/* GLOBALS ******************************************************************/
|
||||
|
||||
static LIST_ENTRY LogFileListHead;
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
|
||||
#include "eventlog.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
/* GLOBALS ******************************************************************/
|
||||
|
||||
HANDLE ConnectPortHandle = NULL;
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
|
||||
#include "eventlog.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
LIST_ENTRY LogHandleListHead;
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
|
Loading…
Reference in a new issue