From d2fab180ecfe3a576e313ec46cf8e317fce1740a Mon Sep 17 00:00:00 2001 From: kevin Date: Fri, 20 Dec 2024 13:19:10 -0500 Subject: [PATCH] cwPianoScore.h : Added comments. --- cwPianoScore.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cwPianoScore.h b/cwPianoScore.h index 69b4be8..2d6adda 100644 --- a/cwPianoScore.h +++ b/cwPianoScore.h @@ -66,13 +66,15 @@ namespace cw bool has_loc_info_flag( handle_t h ); unsigned event_count( handle_t h ); + + // Get first event in linked list. const event_t* base_event( handle_t h ); const event_t* loc_to_event( handle_t h, unsigned loc ); // Format the event as a string for printing. rc_t event_to_string( handle_t h, unsigned uid, char* buf, unsigned buf_byte_cnt ); - + rc_t test( const object_t* cfg ); }