aboutsummaryrefslogtreecommitdiffstats
path: root/src/libpts/pts/components/pts_component.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libpts/pts/components/pts_component.h')
-rw-r--r--src/libpts/pts/components/pts_component.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/libpts/pts/components/pts_component.h b/src/libpts/pts/components/pts_component.h
index 42e592f3f..524ff332d 100644
--- a/src/libpts/pts/components/pts_component.h
+++ b/src/libpts/pts/components/pts_component.h
@@ -70,14 +70,20 @@ struct pts_component_t {
* Verify the evidence measurements of the PTS Functional Component
*
* @param pts PTS interface
- * @param pts_db PTS measurement database
* @param evidence component evidence measurement to be verified
* @return status return code
*/
status_t (*verify)(pts_component_t *this, pts_t *pts,
- pts_database_t *pts_db,
pts_comp_evidence_t *evidence);
+
+ /**
+ * Tell the PTS Functional Component to finalize pending registrations
+ *
+ * @return TRUE if there are pending registrations
+ */
+ bool (*check_off_registrations)(pts_component_t *this);
+
/**
* Destroys a pts_component_t object.
*/