64 lines
956 B
Plaintext
64 lines
956 B
Plaintext
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
|
|
Module Name:
|
|
|
|
notify.idl
|
|
|
|
Abstract:
|
|
|
|
RPC Interface for notifying SENS of external system events.
|
|
|
|
Author:
|
|
|
|
Gopal Parupudi <GopalP>
|
|
|
|
[Notes:]
|
|
|
|
optional-notes
|
|
|
|
Revision History:
|
|
|
|
GopalP 11/02/1997 Start.
|
|
|
|
--*/
|
|
|
|
|
|
[
|
|
uuid(629b9f66-556c-11d1-8dd2-00aa004abd5e),
|
|
version(3.0),
|
|
]
|
|
interface SENSNotify
|
|
{
|
|
import "wtypes.idl";
|
|
import "sensapip.h";
|
|
|
|
|
|
error_status_t
|
|
RPC_SensNotifyWinlogonEvent(
|
|
[in] handle_t h,
|
|
[in] PSENS_NOTIFY_WINLOGON pEvent
|
|
);
|
|
|
|
error_status_t
|
|
RPC_SensNotifyRasEvent(
|
|
[in] handle_t h,
|
|
[in] PSENS_NOTIFY_RAS pEvent
|
|
);
|
|
|
|
error_status_t
|
|
RPC_SensNotifyNetconEvent(
|
|
[in] handle_t h,
|
|
[in] PSENS_NOTIFY_NETCON_P pEvent
|
|
);
|
|
|
|
error_status_t
|
|
RPC_SyncMgrExecCmd(
|
|
[in] handle_t h,
|
|
[in] DWORD nCmdID,
|
|
[in] DWORD nCmdExecOpt
|
|
);
|
|
|
|
}
|