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()/. More... | |
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()/. More... | |
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 208 of file ProductRegistry.cpp.