mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-07-31 03:23:37 +00:00
[c-host] windows: fix dxgi option struct syntax
This commit is contained in:
parent
0ba931cbed
commit
cc6dd58778
2 changed files with 11 additions and 19 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
a12-188-ga7daeb2a12+1
|
a12-189-g0ba931cbed+1
|
|
@ -107,26 +107,18 @@ static void dxgi_initOptions()
|
||||||
struct Option options[] =
|
struct Option options[] =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
.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,
|
.value.x_string = NULL
|
||||||
.v.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,
|
.value.x_string = NULL
|
||||||
.v.x_string = NULL
|
|
||||||
},
|
|
||||||
.validator = NULL,
|
|
||||||
.printHelp = NULL
|
|
||||||
},
|
},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue