[c-host] more windows basics and ivshmem pointer init

This commit is contained in:
Geoffrey McRae
2019-02-28 20:50:22 +11:00
parent 6894ed7d5c
commit d881df916e
5 changed files with 109 additions and 21 deletions

View File

@@ -33,10 +33,11 @@ CaptureResult;
struct CaptureInterface
{
const char * (*getName)();
bool (*create )();
bool (*init )();
bool (*deinit )();
void (*free )();
CaptureResult (*capture)();
const char * (*getName )();
bool (*create )();
bool (*init )();
bool (*deinit )();
void (*free )();
unsigned int (*getMaxFrameSize)();
CaptureResult (*capture )();
};