summaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxsu
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-17 19:24:18 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-17 19:24:18 +0000
commit85dfa4b381788b2e3085fb94e7717087c5cac52c (patch)
tree415d0b50614a861512888c8f817e32fb4c7ad657 /nuttx/graphics/nxsu
parent4304032f04cf5cfac5b10f69b4139111bcebb4d1 (diff)
downloadnuttx-85dfa4b381788b2e3085fb94e7717087c5cac52c.tar.gz
nuttx-85dfa4b381788b2e3085fb94e7717087c5cac52c.tar.bz2
nuttx-85dfa4b381788b2e3085fb94e7717087c5cac52c.zip
Fixes for clean NX compile/link
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2374 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/graphics/nxsu')
-rw-r--r--nuttx/graphics/nxsu/nx_kbdchin.c1
-rw-r--r--nuttx/graphics/nxsu/nx_kbdin.c1
-rw-r--r--nuttx/graphics/nxsu/nx_mousein.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/graphics/nxsu/nx_kbdchin.c b/nuttx/graphics/nxsu/nx_kbdchin.c
index 03db76f48..51f4d8ce1 100644
--- a/nuttx/graphics/nxsu/nx_kbdchin.c
+++ b/nuttx/graphics/nxsu/nx_kbdchin.c
@@ -95,6 +95,7 @@ int nx_kbdchin(NXHANDLE handle, uint8_t ch)
{
wnd->cb->kbdin(wnd, 1, &ch, wnd->arg);
}
+ return OK;
}
#endif /* CONFIG_NX_KBD */
diff --git a/nuttx/graphics/nxsu/nx_kbdin.c b/nuttx/graphics/nxsu/nx_kbdin.c
index 4a1b93d09..066c31c8e 100644
--- a/nuttx/graphics/nxsu/nx_kbdin.c
+++ b/nuttx/graphics/nxsu/nx_kbdin.c
@@ -94,6 +94,7 @@ int nx_kbdin(NXHANDLE handle, uint8_t nch, FAR const uint8_t *ch)
{
wnd->cb->kbdin(wnd, nch, ch, wnd->arg);
}
+ return OK;
}
#endif /* CONFIG_NX_KBD */
diff --git a/nuttx/graphics/nxsu/nx_mousein.c b/nuttx/graphics/nxsu/nx_mousein.c
index d83da90b0..2d4c9bec9 100644
--- a/nuttx/graphics/nxsu/nx_mousein.c
+++ b/nuttx/graphics/nxsu/nx_mousein.c
@@ -194,6 +194,7 @@ int nx_mousein(NXHANDLE handle, nxgl_coord_t x, nxgl_coord_t y, uint8_t buttons)
}
}
}
+ return OK;
}
#endif /* CONFIG_NX_MOUSE */