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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: events.hxx
//
// Contents:
//
// Classes:
//
// Functions:
//
// History: 3-07-95 RichardW Created
//
//----------------------------------------------------------------------------
#ifndef __EVENTS_HXX__
#define __EVENTS_HXX__
BOOL InitializeEvents(void);
DWORD ReportServiceEvent( IN WORD EventType, IN DWORD EventId, IN DWORD SizeOfRawData, IN PVOID RawData, IN DWORD NumberOfStrings, ... );
void KdcReportKeyError( IN PUNICODE_STRING AccountName, IN OPTIONAL PUNICODE_STRING ServerName, IN ULONG EventId, IN OPTIONAL PKERB_CRYPT_LIST RequestEtypes, IN OPTIONAL PKERB_STORED_CREDENTIAL StoredCredential );
BOOL ShutdownEvents(void);
#endif
|