mirror of https://github.com/tongzx/nt5src
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.
40 lines
1.0 KiB
40 lines
1.0 KiB
|
|
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: NotifyEv.hxx
|
|
//
|
|
// Contents: CClientNotifyEvent class
|
|
//
|
|
// History: Jan-06-97 mohamedn Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
//+-------------------------------------------------------------------------
|
|
//
|
|
// Class: CClientNotifyEvent
|
|
//
|
|
// Synopsis: Consturctor encapsulates creating a CEventLogItem object,
|
|
// and calls CEventLog::ReportEvent on that event item.
|
|
//
|
|
// History: Jan-04-97 mohamedn Created
|
|
//--------------------------------------------------------------------------
|
|
|
|
class CClientNotifyEvent
|
|
{
|
|
|
|
public:
|
|
|
|
CClientNotifyEvent( WORD fType,
|
|
DWORD eventId,
|
|
ULONG nParams,
|
|
const PROPVARIANT *aParams,
|
|
ULONG cbData = 0,
|
|
void* data = 0 );
|
|
|
|
};
|
|
|