drop/drop/ipc.h

10 lines
128 B
C
Raw Permalink Normal View History

2023-04-29 01:38:56 +02:00
#ifndef LIBIPC
#define LIBIPC
#include <stdint.h>
void* ipc_context_init (void);
void ipc_context_deinit (void* ctx);
#endif