cwIo.h/cpp : Added uiReport().
This commit is contained in:
parent
586b71b93c
commit
f57ac5ef3e
6
cwIo.cpp
6
cwIo.cpp
@ -3134,3 +3134,9 @@ cw::rc_t cw::io::uiSendValue( handle_t h, unsigned uuId, const char* value )
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void cw::io::uiReport( handle_t h )
|
||||||
|
{
|
||||||
|
ui::handle_t uiH;
|
||||||
|
if(_handleToUiHandle(h,uiH) == kOkRC )
|
||||||
|
ui::report(uiH);
|
||||||
|
}
|
||||||
|
2
cwIo.h
2
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, double value );
|
||||||
rc_t uiSendValue( handle_t h, unsigned uuId, const char* value );
|
rc_t uiSendValue( handle_t h, unsigned uuId, const char* value );
|
||||||
|
|
||||||
|
void uiReport( handle_t h );
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user