Minor update to some comments.

This commit is contained in:
Gregory Nutt 2019-05-02 13:07:47 -06:00
parent 9f84aef8d3
commit 34e62de4dd
2 changed files with 8 additions and 5 deletions

View File

@ -149,8 +149,8 @@ struct nx_callback_s
* the overall display
* bounds - The bounding rectangle that the describes the entire
* display
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
* nxtk_openwindow, or nxtk_opentoolbar)
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
* nxtk_openwindow, or nxtk_opentoolbar)
*
* Returned Value:
* None
@ -172,8 +172,8 @@ struct nx_callback_s
* hwnd - Window handle
* pos - The (x,y) position of the mouse
* buttons - See NX_MOUSE_* definitions
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
* nxtk_openwindow, or nxtk_opentoolbar)
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
* nxtk_openwindow, or nxtk_opentoolbar)
*
* Returned Value:
* None

View File

@ -171,7 +171,10 @@ struct nxbe_window_s
*/
#endif
/* Client state information this is provide in window callbacks */
/* Client state information this is provide in window callbacks
* Set by nx_openwindow, nx_requestbkgd, nxtk_openwindow, or
* nxtk_opentoolbar and persists for the life of the window.
*/
FAR void *arg;
};