Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

24 lines
630 B

//+--------------------------------------------------------------------------
//
// Copyright (C) 1996, Microsoft Corporation. All Rights Reserved.
//
// File: Log.h
//
// History: 18-Dec-96 PatHal Created.
//
//---------------------------------------------------------------------------
#if defined(_DEBUG) || defined(TH_LOG)
VOID ThLogWrite( HANDLE hLogFile, WCHAR *pwsz );
HANDLE ThLogOpen( CONST CHAR *pszLog );
VOID ThLogClose( HANDLE hLogFile );
#else
#define ThLogWrite( hLogFile, pwsz)
#define ThLogOpen( pwszLog )
#define ThDebugCloseLog( hLogFile )
#endif // defined(_DEBUG) || defined(TH_LOG)