Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*****************************************************************************\
FILE: logging.h
DESCRIPTION: Logging helper functions
BryanSt 4/23/2001 (Bryan Starbuck) Copyright (C) Microsoft Corp 2001-2001. All rights reserved. \*****************************************************************************/
#ifndef _LOGGING_H
#define _LOGGING_H
void WriteToLogFileA(LPCSTR pszMessage, ...); void WriteToLogFileW(LPCWSTR pszMessage); void CloseLogFile(void);
#endif // _LOGGING_H
|