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.

33 lines
882 B

  1. /**************************************************************************
  2. *
  3. * Copyright (c) 2000 Microsoft Corporation
  4. *
  5. * Module Name:
  6. *
  7. * CPU-specific scan operations
  8. *
  9. * Abstract:
  10. *
  11. * Handles scan operations which only work on certain CPU's.
  12. * Currently only used by EpAlphaBlender. This works by overwriting the
  13. * function pointer arrays with ones holding CPU-specific information.
  14. *
  15. * Created:
  16. *
  17. * 05/30/2000 agodfrey
  18. * Created it.
  19. *
  20. **************************************************************************/
  21. #ifndef _CPUSPECIFICOPS_HPP
  22. #define _CPUSPECIFICOPS_HPP
  23. namespace CPUSpecificOps
  24. {
  25. VOID Initialize(); // Sets up the function pointer arrays.
  26. // Should only be called once (we ASSERT).
  27. extern BOOL Initialized; // Whether Initialize() has been called yet.
  28. };
  29. #endif