mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-25 23:07:18 +00:00
[c-host] windows: fix dxgi option struct syntax
This commit is contained in:
parent
0ba931cbed
commit
cc6dd58778
@ -110,23 +110,15 @@ static void dxgi_initOptions()
|
|||||||
.module = "dxgi",
|
.module = "dxgi",
|
||||||
.name = "adapter",
|
.name = "adapter",
|
||||||
.description = "The name of the adapter to capture",
|
.description = "The name of the adapter to capture",
|
||||||
.value = {
|
|
||||||
.type = OPTION_TYPE_STRING,
|
.type = OPTION_TYPE_STRING,
|
||||||
.v.x_string = NULL
|
.value.x_string = NULL
|
||||||
},
|
|
||||||
.validator = NULL,
|
|
||||||
.printHelp = NULL
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.module = "dxgi",
|
.module = "dxgi",
|
||||||
.name = "output",
|
.name = "output",
|
||||||
.description = "The name of the adapter's output to capture",
|
.description = "The name of the adapter's output to capture",
|
||||||
.value = {
|
|
||||||
.type = OPTION_TYPE_STRING,
|
.type = OPTION_TYPE_STRING,
|
||||||
.v.x_string = NULL
|
.value.x_string = NULL
|
||||||
},
|
|
||||||
.validator = NULL,
|
|
||||||
.printHelp = NULL
|
|
||||||
},
|
},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user