summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-28 17:59:09 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-28 17:59:09 +0000
commitc44650272643a16021d116e49e122e0770bfc950 (patch)
tree4decabd571e4371de8d1c701e655a32e27a4eb2b
parent27fe288e1c5e3e34fe33df351eb69f8fccc1b3de (diff)
downloadpx4-nuttx-c44650272643a16021d116e49e122e0770bfc950.tar.gz
px4-nuttx-c44650272643a16021d116e49e122e0770bfc950.tar.bz2
px4-nuttx-c44650272643a16021d116e49e122e0770bfc950.zip
Fix variable name in prototypes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1333 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/include/nuttx/nx.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/include/nuttx/nx.h b/nuttx/include/nuttx/nx.h
index 101d393e3..a8e77d227 100644
--- a/nuttx/include/nuttx/nx.h
+++ b/nuttx/include/nuttx/nx.h
@@ -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
};