Subversion Repositories HelenOS

Rev

Rev 2873 | Blame | Last modification | View Log | Download | RSS feed

  1. /** @addtogroup sctrace
  2.  * @{
  3.  */
  4. /** @file
  5.  */
  6.  
  7. #ifndef IPCP_H_
  8. #define IPCP_H_
  9.  
  10. #include <ipc/ipc.h>
  11. #include "proto.h"
  12.  
  13. void ipcp_init(void);
  14. void ipcp_cleanup(void);
  15.  
  16. void ipcp_call_out(int phone, ipc_call_t *call, ipc_callid_t hash);
  17. void ipcp_call_sync(int phone, ipc_call_t *call, ipc_call_t *answer);
  18. void ipcp_call_in(ipc_call_t *call, ipc_callid_t hash);
  19. void ipcp_hangup(int phone, int rc);
  20.  
  21. #endif
  22.  
  23. /** @}
  24.  */
  25.