Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1f0b48ab
Commit
1f0b48ab
authored
Jun 07, 2021
by
Rémi Bernon
Committed by
Alexandre Julliard
Jun 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hidclass.sys: Remove Delim member from struct caps.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4c6c8c54
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
descriptor.c
dlls/hidclass.sys/descriptor.c
+4
-7
No files found.
dlls/hidclass.sys/descriptor.c
View file @
1f0b48ab
...
...
@@ -122,8 +122,6 @@ struct caps {
USHORT
Reserved3
;
}
NotRange
;
}
DUMMYUNIONNAME
;
int
Delim
;
};
struct
feature
{
...
...
@@ -200,7 +198,7 @@ static void debugstr_caps(const char* type, struct caps *caps)
return
;
TRACE
(
"(%s Caps: UsagePage 0x%x; LogicalMin %i; LogicalMax %i; PhysicalMin %i; "
"PhysicalMax %i; UnitsExp %i; Units %i; BitSize %i; ReportID %i; ReportCount %i; "
"Usage %s; StringIndex %s; DesignatorIndex %s;
Delim %i;
)
\n
"
,
"Usage %s; StringIndex %s; DesignatorIndex %s;)
\n
"
,
type
,
caps
->
UsagePage
,
caps
->
LogicalMin
,
...
...
@@ -214,8 +212,7 @@ static void debugstr_caps(const char* type, struct caps *caps)
caps
->
ReportCount
,
debugstr_usages
(
caps
),
debugstr_stringindex
(
caps
),
debugstr_designatorindex
(
caps
),
caps
->
Delim
);
debugstr_designatorindex
(
caps
));
}
static
void
debug_feature
(
struct
feature
*
feature
)
...
...
@@ -681,8 +678,8 @@ static int parse_descriptor(BYTE *descriptor, unsigned int index, unsigned int l
caps
->
IsStringRange
=
TRUE
;
break
;
case
TAG_LOCAL_DELIMITER
:
caps
->
Delim
=
getValue
(
bSize
,
itemVal
,
FALSE
);
break
;
FIXME
(
"delimiter %d not implemented!
\n
"
,
itemVal
);
return
-
1
;
default:
ERR
(
"Unknown (bTag: 0x%x, bType: 0x%x)
\n
"
,
bTag
,
bType
);
return
-
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment