mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
13 lines
217 B
C
13 lines
217 B
C
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
struct IVSHMEMInit
|
|
{
|
|
int64_t version;
|
|
int64_t clientID;
|
|
int64_t unused;
|
|
int64_t sharedFD;
|
|
};
|
|
|
|
bool ivshmem_connect(const char * unix_socket);
|
|
void ivshmem_close(); |