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.

29 lines
604 B

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