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.

48 lines
559 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. idlesrv.h
  5. Abstract:
  6. This module contains declarations for the idle detection server
  7. host.
  8. Author:
  9. Dave Fields (davidfie) 26-July-1998
  10. Cenk Ergan (cenke) 14-June-2000
  11. Revision History:
  12. --*/
  13. #ifndef _IDLESRV_H_
  14. #define _IDLESRV_H_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. //
  19. // Functions to initialize / uninitialize the server.
  20. //
  21. DWORD
  22. ItSrvInitialize (
  23. VOID
  24. );
  25. VOID
  26. ItSrvUninitialize (
  27. VOID
  28. );
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif // _IDLESRV_H_