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

/**************************************************************************
*
* Copyright (c) 2000 Microsoft Corporation
*
* Module Name:
*
* CPU-specific scan operations
*
* Abstract:
*
* Handles scan operations which only work on certain CPU's.
* Currently only used by EpAlphaBlender. This works by overwriting the
* function pointer arrays with ones holding CPU-specific information.
*
* Created:
*
* 05/30/2000 agodfrey
* Created it.
*
**************************************************************************/
#ifndef _CPUSPECIFICOPS_HPP
#define _CPUSPECIFICOPS_HPP
namespace CPUSpecificOps
{
VOID Initialize(); // Sets up the function pointer arrays.
// Should only be called once (we ASSERT).
extern BOOL Initialized; // Whether Initialize() has been called yet.
};
#endif