struct regval_blob;
/**
- * Protoype for function called to open a key.
+ * Prototype for function called to open a key.
*
* @param private_data
* @param[in] parent the parent of the key to open, may be NULL
void** key);
/**
- * Protoype for function called to close a key.
+ * Prototype for function called to close a key.
*
* @param private_data
* @param key the key to close
void* key);
/**
- * Protoype for function called to create (or open an existing) key.
+ * Prototype for function called to create (or open an existing) key.
*
* @param private_data
* @param[in] parent the parent of the key to create, may be NULL
bool* existing);
/**
- * Protoype for function called to delete a key.
+ * Prototype for function called to delete a key.
*
* @param private_data
* @param parent the parent of the key to delete, may be NULL
const char* name);
/**
- * Protoype for function called to delete a value.
+ * Prototype for function called to delete a value.
*
* @param private_data
* @param parent the key of the value to delete
const char* name);
/**
- * Protoype for function called to set a value.
+ * Prototype for function called to set a value.
*
* @param private_data
* @param parent the key of the value to set
uint32_t size);
/**
- * Protoype for function called to set a value given as struct registry_value.
+ * Prototype for function called to set a value given as struct registry_value.
*
* @param private_data
* @param parent the key of the value to set
const struct registry_value* val);
/**
- * Protoype for function called to set a value given as struct struct regval_blob.
+ * Prototype for function called to set a value given as struct struct regval_blob.
*
* @param private_data
* @param parent the key of the value to set