Fix variable name in prototypes

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1333 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2008-11-28 17:59:09 +00:00
parent 8344205751
commit 6506ad093c
1 changed files with 4 additions and 4 deletions

View File

@ -82,14 +82,14 @@ typedef FAR void *NXWINDOW;
struct nx_callback_s
{
void (*redraw)(NXWINDOW handle, FAR const struct nxgl_rect_s *rect, boolean more);
void (*position)(NXWINDOW handle, FAR const struct nxgl_rect_s *size,
void (*redraw)(NXWINDOW hwnd, FAR const struct nxgl_rect_s *rect, boolean more);
void (*position)(NXWINDOW hwnd, FAR const struct nxgl_rect_s *size,
FAR const struct nxgl_point_s *pos);
#ifdef CONFIG_NX_MOUSE
void (*mousein)(NXWINDOW handle, FAR const struct nxgl_point_s *pos, ubyte buttons);
void (*mousein)(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos, ubyte buttons);
#endif
#ifdef CONFIG_NX_KBD
void (*kbdin)(NXWINDOW handle, ubyte nch, const ubyte *ch);
void (*kbdin)(NXWINDOW hwnd, ubyte nch, const ubyte *ch);
#endif
};