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
29 lines
513 B
/*
|
|
* clsiface.h - Class interface cache ADT description.
|
|
*/
|
|
|
|
|
|
/* Types
|
|
********/
|
|
|
|
/* handles */
|
|
|
|
DECLARE_HANDLE(HCLSIFACECACHE);
|
|
DECLARE_STANDARD_TYPES(HCLSIFACECACHE);
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* rhcache.c */
|
|
|
|
extern BOOL CreateClassInterfaceCache(PHCLSIFACECACHE);
|
|
extern void DestroyClassInterfaceCache(HCLSIFACECACHE);
|
|
extern HRESULT GetClassInterface(HCLSIFACECACHE, PCCLSID, PCIID, PVOID *);
|
|
|
|
#ifdef DEBUG
|
|
|
|
extern BOOL IsValidHCLSIFACECACHE(HCLSIFACECACHE);
|
|
|
|
#endif
|
|
|