cwIo.h/cpp : Added uiReport().

This commit is contained in:
kevin 2022-01-22 09:43:01 -05:00
parent 586b71b93c
commit f57ac5ef3e
2 changed files with 7 additions and 1 deletions

View File

@ -3134,3 +3134,9 @@ cw::rc_t cw::io::uiSendValue( handle_t h, unsigned uuId, const char* value )
return rc;
}
void cw::io::uiReport( handle_t h )
{
ui::handle_t uiH;
if(_handleToUiHandle(h,uiH) == kOkRC )
ui::report(uiH);
}

2
cwIo.h
View File

@ -364,7 +364,7 @@ namespace cw
rc_t uiSendValue( handle_t h, unsigned uuId, double value );
rc_t uiSendValue( handle_t h, unsigned uuId, const char* value );
void uiReport( handle_t h );
}
}