windows-nt/Source/XPSP1/NT/com/mobile/sens/conn/idl/notify.idl

64 lines
956 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
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
);
}