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.

29 lines
513 B

  1. /*
  2. * clsiface.h - Class interface cache ADT description.
  3. */
  4. /* Types
  5. ********/
  6. /* handles */
  7. DECLARE_HANDLE(HCLSIFACECACHE);
  8. DECLARE_STANDARD_TYPES(HCLSIFACECACHE);
  9. /* Prototypes
  10. *************/
  11. /* rhcache.c */
  12. extern BOOL CreateClassInterfaceCache(PHCLSIFACECACHE);
  13. extern void DestroyClassInterfaceCache(HCLSIFACECACHE);
  14. extern HRESULT GetClassInterface(HCLSIFACECACHE, PCCLSID, PCIID, PVOID *);
  15. #ifdef DEBUG
  16. extern BOOL IsValidHCLSIFACECACHE(HCLSIFACECACHE);
  17. #endif