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.

38 lines
782 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // TASKS.H
  4. //
  5. // Microsoft Confidential
  6. // Copyright (c) Microsoft Corporation 1998
  7. // All rights reserved
  8. //
  9. // Includes all internal and external include files, defined values, macros,
  10. // data structures, and fucntion prototypes for the corisponding CXX file.
  11. //
  12. // Jason Cohen (JCOHEN)
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. // Only include this file once.
  16. //
  17. #ifndef _TASKS_H_
  18. #define _TASKS_H_
  19. // Include file(s).
  20. //
  21. #include <windows.h>
  22. #include "main.h"
  23. // External function prototype(s).
  24. //
  25. LPTASKDATA CreateTasks(VOID);
  26. VOID FreeTasks(LPTASKDATA);
  27. DWORD TasksScheduled(LPTASKDATA);
  28. BOOL InitGenericTask(HWND);
  29. #endif // _TASKS_H_