9
0
Fork 0

Fix some parameter passing

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1385 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2008-12-01 22:10:28 +00:00
parent 74574e271f
commit ebd89e3bbf
1 changed files with 3 additions and 3 deletions

View File

@ -389,7 +389,7 @@ int nx_runinstance(FAR const char *mqname, FAR struct fb_vtable_s *fb)
case NX_SVRMSG_REQUESTBKGD: /* Give access to the background window */
{
FAR struct nxsvrmsg_requestbkgd_s *rqbgmsg = (FAR struct nxsvrmsg_requestbkgd_s *)buffer;
nxmu_requestbkgd(rqbgmsg->conn, &fe.be, rqbgmsg->cb);
nxmu_requestbkgd(rqbgmsg->conn, &fe.be, rqbgmsg->cb, rqbgmsg->arg);
}
break;
@ -473,7 +473,7 @@ int nx_runinstance(FAR const char *mqname, FAR struct fb_vtable_s *fb)
case NX_SVRMSG_MOUSEIN: /* New mouse report from mouse client */
{
FAR struct nxsvrmsg_mousein_s *mousemsg = (FAR struct nxsvrmsg_mousein_s *)buffer;
nxmu_mousein(&fe.be, &mousemsg->pt, mousemsg->buttons);
nxmu_mousein(&fe, &mousemsg->pt, mousemsg->buttons);
}
break;
#endif
@ -481,7 +481,7 @@ int nx_runinstance(FAR const char *mqname, FAR struct fb_vtable_s *fb)
case NX_SVRMSG_KBDIN: /* New keyboard report from keyboard client */
{
FAR struct nxsvrmsg_kbdin_s *kbdmsg = (FAR struct nxsvrmsg_kbdin_s *)buffer;
nxmu_kbdin(&fe.be, kbdmsg->nch, kbdmsg->ch);
nxmu_kbdin(&fe, kbdmsg->nch, kbdmsg->ch);
}
break;
#endif