mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
For consistency, all close function return int
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1398 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -84,11 +84,11 @@
|
||||
* htb - The toolbar handle returned by nxtk_opentoolbar
|
||||
*
|
||||
* Return:
|
||||
* None
|
||||
* OK on success; ERROR on failure with errno set appropriately
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
void nxtk_closetoolbar(NXTKTOOLBAR htb)
|
||||
int nxtk_closetoolbar(NXTKTOOLBAR htb)
|
||||
{
|
||||
FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)htb;
|
||||
|
||||
@@ -107,5 +107,6 @@ void nxtk_closetoolbar(NXTKTOOLBAR htb)
|
||||
*/
|
||||
|
||||
nxfe_redrawreq(&fwnd->wnd, &fwnd->wnd.bounds);
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
||||
@@ -84,13 +84,12 @@
|
||||
* hfwnd - The handle returned by nxtk_openwindow
|
||||
*
|
||||
* Return:
|
||||
* Success: A non-NULL handle used with subsequent NXTK window accesses
|
||||
* Failure: NULL is returned and errno is set appropriately
|
||||
* OK on success; ERROR on failure with errno set appropriately
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
void nxtk_closewindow(NXTKWINDOW hfwnd)
|
||||
int nxtk_closewindow(NXTKWINDOW hfwnd)
|
||||
{
|
||||
nx_closewindow((NXWINDOW)hfwnd);
|
||||
return nx_closewindow((NXWINDOW)hfwnd);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user