Implemented AppServer::HandleKeyEvent and FindApp

Minor tweaks to ServerApp::PostMessage to allow for regular message posting


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2629 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm
2003-02-04 00:20:15 +00:00
parent 3ffc009720
commit d55509c6be
4 changed files with 191 additions and 6 deletions
+2 -2
View File
@@ -176,9 +176,9 @@ bool ServerApp::PingTarget(void)
\brief Send a message to the ServerApp with no attachments
\param code ID code of the message to post
*/
void ServerApp::PostMessage(int32 code)
void ServerApp::PostMessage(int32 code, size_t size, int8 *buffer)
{
write_port(_receiver,code, NULL, 0);
write_port(_receiver,code, buffer, size);
}
/*!