cwPianoScore.h/cpp : Removed uid_to_event() function.

This commit is contained in:
kevin 2023-08-20 17:15:59 -04:00
parent 2d88e689b5
commit 772521e604
2 changed files with 2 additions and 2 deletions

View File

@ -577,13 +577,13 @@ double cw::score::locs_to_diff_seconds( handle_t h, unsigned loc0Id, unsigned l
return e1->sec - e0->sec; return e1->sec - e0->sec;
} }
*/
const cw::score::event_t* cw::score::uid_to_event( handle_t h, unsigned uid ) const cw::score::event_t* cw::score::uid_to_event( handle_t h, unsigned uid )
{ {
//hscore_t* p = _handleToPtr(h); //hscore_t* p = _handleToPtr(h);
return nullptr; return nullptr;
} }
*/
cw::rc_t cw::score::event_to_string( handle_t h, unsigned uid, char* buf, unsigned buf_byte_cnt ) cw::rc_t cw::score::event_to_string( handle_t h, unsigned uid, char* buf, unsigned buf_byte_cnt )
{ {

View File

@ -53,7 +53,7 @@ namespace cw
double locs_to_diff_seconds( handle_t h, unsigned loc0Id, unsigned loc1Id ); double locs_to_diff_seconds( handle_t h, unsigned loc0Id, unsigned loc1Id );
*/ */
const event_t* uid_to_event( handle_t h, unsigned uid ); //const event_t* uid_to_event( handle_t h, unsigned uid );
// Format the event as a string for printing. // Format the event as a string for printing.