Subversion Repositories HelenOS

Rev

Rev 2894 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2871 svoboda 1
/** @addtogroup sctrace
2
 * @{
3
 */
4
/** @file
5
 */
6
 
7
#ifndef IPC_DESC_H_
8
#define IPC_DESC_H_
9
 
10
typedef struct {
11
    int number;
12
    char *name;
13
} ipc_m_desc_t;
14
 
15
extern ipc_m_desc_t ipc_methods[];
16
 
17
#endif
18
 
19
/** @}
20
 */