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.

19 lines
593 B

  1. #ifndef __FCACHE_HPP__
  2. #define __FCACHE_HPP__
  3. /*==========================================================================;
  4. *
  5. * Copyright (C) 1999-2000 Microsoft Corporation. All Rights Reserved.
  6. *
  7. * File: fcache.hpp
  8. * Content: File cache for device caps.
  9. *
  10. ***************************************************************************/
  11. void ReadFromCache(D3DADAPTER_IDENTIFIER8* pDI, UINT* pCapsSize, BYTE** ppCaps);
  12. void WriteToCache(D3DADAPTER_IDENTIFIER8* pDI, UINT CapsSize, BYTE* pCaps);
  13. void RemoveFromCache(D3DADAPTER_IDENTIFIER8* pDI);
  14. #endif // __FCACHE_HPP__