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.

41 lines
448 B

  1. /*++
  2. Copyright (c) 1999, Microsoft Corporation
  3. Module Name:
  4. sample\utils.h
  5. Abstract:
  6. The file contains miscellaneous utilities.
  7. --*/
  8. #ifndef _UTILS_H_
  9. #define _UTILS_H_
  10. // Worker Function Processing
  11. // functions
  12. DWORD
  13. QueueSampleWorker(
  14. IN WORKERFUNCTION pfnFunction,
  15. IN PVOID pvContext
  16. );
  17. BOOL
  18. EnterSampleAPI(
  19. );
  20. BOOL
  21. EnterSampleWorker(
  22. );
  23. VOID
  24. LeaveSampleWorker(
  25. );
  26. #endif // _UTILS_H_