Leaked source code of windows server 2003
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.

63 lines
1019 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1997 - 1999
  3. Module Name:
  4. notify.idl
  5. Abstract:
  6. RPC Interface for notifying SENS of external system events.
  7. Author:
  8. Gopal Parupudi <GopalP>
  9. [Notes:]
  10. optional-notes
  11. Revision History:
  12. GopalP 11/02/1997 Start.
  13. --*/
  14. [
  15. uuid(629b9f66-556c-11d1-8dd2-00aa004abd5e),
  16. version(3.0),
  17. ]
  18. interface SENSNotify
  19. {
  20. import "wtypes.idl";
  21. import "sensapip.h";
  22. error_status_t
  23. RPC_SensNotifyWinlogonEvent(
  24. [in] handle_t h,
  25. [in] PSENS_NOTIFY_WINLOGON pEvent
  26. );
  27. error_status_t
  28. RPC_SensNotifyRasEvent(
  29. [in] handle_t h,
  30. [in] PSENS_NOTIFY_RAS pEvent
  31. );
  32. error_status_t
  33. RPC_SensNotifyNetconEvent(
  34. [in] handle_t h,
  35. [in] PSENS_NOTIFY_NETCON_P pEvent
  36. );
  37. error_status_t
  38. RPC_SyncMgrExecCmd(
  39. [in] handle_t h,
  40. [in] DWORD nCmdID,
  41. [in] DWORD nCmdExecOpt
  42. );
  43. }