From f57ac5ef3e4732ff862a7c5519006f899080ae91 Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 22 Jan 2022 09:43:01 -0500 Subject: [PATCH] cwIo.h/cpp : Added uiReport(). --- cwIo.cpp | 6 ++++++ cwIo.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/cwIo.cpp b/cwIo.cpp index 54c0006..94ef47e 100644 --- a/cwIo.cpp +++ b/cwIo.cpp @@ -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); +} diff --git a/cwIo.h b/cwIo.h index 2980dc9..40e1067 100644 --- a/cwIo.h +++ b/cwIo.h @@ -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 ); } }