10 lines
128 B
C
10 lines
128 B
C
|
#ifndef LIBIPC
|
||
|
#define LIBIPC
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void* ipc_context_init (void);
|
||
|
void ipc_context_deinit (void* ctx);
|
||
|
|
||
|
#endif
|