|
Sierra Toolkit
Version of the Day
|
#include <stddef.h>

Go to the source code of this file.
Functions | |
| void | product_registry_add (const char *name) |
| Extern "C" function product_registry_add provides a means for c programs to register a product. The arguments are passed on to ProductRegistry::addProduct()/. | |
| void | product_registry_add_tpl (const char *name, const char *version, const char *qualifier) |
| Extern "C" function product_registry_add_tpl provides a means for c programs to register a tpl. The arguments are passed on to ProductRegistry::addTpl()/. | |
| size_t | product_registry_size () |
| Extern "C" function product_registry_size returns the number of products in the registry. | |
Definition in file product_registry.h.
| void product_registry_add | ( | const char * | name | ) |
Extern "C" function product_registry_add provides a means for c programs to register a product. The arguments are passed on to ProductRegistry::addProduct()/.
| name | a char const pointer to the product's name. |
Definition at line 201 of file ProductRegistry.cpp.
| void product_registry_add_tpl | ( | const char * | name, |
| const char * | version, | ||
| const char * | qualifier | ||
| ) |
Extern "C" function product_registry_add_tpl provides a means for c programs to register a tpl. The arguments are passed on to ProductRegistry::addTpl()/.
| name | a char const pointer to the product's name. |
| version | a char const pointer to the product's version string. |
| qualifier | a char const pointer to the product's qualifier string. |
Definition at line 209 of file ProductRegistry.cpp.
| size_t product_registry_size | ( | ) |
Extern "C" function product_registry_size returns the number of products in the registry.
Definition at line 219 of file ProductRegistry.cpp.