mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-25 14:57:20 +00:00
[c-host] be compatible with new option ABI
This commit is contained in:
parent
538a6dc08e
commit
0090580a64
@ -121,9 +121,9 @@ static int shmOpenDev(const char * shmDevice)
|
|||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool shmDeviceValidator(struct OptionValue * value, const char ** error)
|
static bool shmDeviceValidator(struct Option * opt, const char ** error)
|
||||||
{
|
{
|
||||||
char * name = uioGetName(value->v.x_string);
|
char * name = uioGetName(opt->value.x_string);
|
||||||
if (!name)
|
if (!name)
|
||||||
{
|
{
|
||||||
*error = "Failed to get the uio device name";
|
*error = "Failed to get the uio device name";
|
||||||
@ -174,15 +174,13 @@ int main(int argc, char * argv[])
|
|||||||
struct Option options[] =
|
struct Option options[] =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
.module = "os",
|
.module = "os",
|
||||||
.name = "shmDevice",
|
.name = "shmDevice",
|
||||||
.description = "The IVSHMEM device to use",
|
.description = "The IVSHMEM device to use",
|
||||||
.value = {
|
.type = OPTION_TYPE_STRING,
|
||||||
.type = OPTION_TYPE_STRING,
|
.value.x_string = "uio0",
|
||||||
.v.x_string = "uio0"
|
.validator = shmDeviceValidator,
|
||||||
},
|
.printHelp = shmDevicePrintHelp
|
||||||
.validator = shmDeviceValidator,
|
|
||||||
.printHelp = shmDevicePrintHelp
|
|
||||||
},
|
},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
@ -119,12 +119,8 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
|||||||
.module = "os",
|
.module = "os",
|
||||||
.name = "shmDevice",
|
.name = "shmDevice",
|
||||||
.description = "The IVSHMEM device to use",
|
.description = "The IVSHMEM device to use",
|
||||||
.value = {
|
.type = OPTION_TYPE_INT,
|
||||||
.type = OPTION_TYPE_INT,
|
.value.x_int = 0
|
||||||
.v.x_int = 0,
|
|
||||||
},
|
|
||||||
.validator = NULL,
|
|
||||||
.printHelp = NULL
|
|
||||||
},
|
},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user