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.

30 lines
627 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: irnotify.idl
  8. //
  9. //--------------------------------------------------------------------------
  10. [
  11. uuid(209bb240-b919-11d1-bbb6-0080c75e4ec1),
  12. version(1.0),
  13. endpoint("ncalrpc:[Wireless Link Notification]")
  14. ]
  15. interface NotifyLogon
  16. {
  17. void
  18. UserLoggedOn(
  19. [in] handle_t handle,
  20. [out] error_status_t * pStatus
  21. );
  22. void
  23. UserLoggedOff(
  24. [in] handle_t handle,
  25. [out] error_status_t * pStatus
  26. );
  27. }