|
Reference Guide
interface ICatalog
A catalog is a collection of catalog entries. The two catalogs that are provided by the ARK Core Component are constructed using information from the system's registry when the Core Component is initialized. Catalogs allow an application to detect which ARK DLLs are installed on a system.
Definition
- interface ICatalog : IDispatch
-
- {
-
-
- [propget]
-
- HRESULT Count([out, retval] long* rval);
-
- [id(0), propget]
-
- HRESULT Item([in] const VARIANT* index, [out, retval] ICatalogEntry** rval);
- };
-
Descriptions
[propget]
HRESULT Count([out, retval] long* rval);
|
The number of catalog entries.
|
[id(0), propget]
HRESULT Item([in] const VARIANT* index, [out, retval] ICatalogEntry** rval);
|
Given an integer or string index, returns one of the catalog entries.
|
|