Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ab3300cd
Commit
ab3300cd
authored
Jun 25, 2015
by
Aric Stewart
Committed by
Alexandre Julliard
Jun 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add ddk/hidpi.h.
parent
4ba1d8d8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
169 additions
and
1 deletion
+169
-1
Makefile.in
include/Makefile.in
+1
-0
hidpi.h
include/ddk/hidpi.h
+167
-0
hidsdi.h
include/ddk/hidsdi.h
+1
-1
No files found.
include/Makefile.in
View file @
ab3300cd
...
...
@@ -253,6 +253,7 @@ SRCDIR_INCLUDES = \
ddk/compstui.h
\
ddk/csq.h
\
ddk/hidclass.h
\
ddk/hidpi.h
\
ddk/hidsdi.h
\
ddk/imm.h
\
ddk/mountmgr.h
\
...
...
include/ddk/hidpi.h
0 → 100644
View file @
ab3300cd
/*
* Copyright (C) 2015 Aric Stewart
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __HIDPI_H__
#define __HIDPI_H__
typedef
enum
_HIDP_REPORT_TYPE
{
HidP_Input
,
HidP_Output
,
HidP_Feature
}
HIDP_REPORT_TYPE
;
typedef
struct
_HIDP_BUTTON_CAPS
{
USAGE
UsagePage
;
UCHAR
ReportID
;
BOOLEAN
IsAlias
;
USHORT
BitField
;
USHORT
LinkCollection
;
USAGE
LinkUsage
;
USAGE
LinkUsagePage
;
BOOLEAN
IsRange
;
BOOLEAN
IsStringRange
;
BOOLEAN
IsDesignatorRange
;
BOOLEAN
IsAbsolute
;
ULONG
Reserved
[
10
];
union
{
struct
{
USAGE
UsageMin
;
USAGE
UsageMax
;
USHORT
StringMin
;
USHORT
StringMax
;
USHORT
DesignatorMin
;
USHORT
DesignatorMax
;
USHORT
DataIndexMin
;
USHORT
DataIndexMax
;
}
Range
;
struct
{
USAGE
Usage
;
USAGE
Reserved1
;
USHORT
StringIndex
;
USHORT
Reserved2
;
USHORT
DesignatorIndex
;
USHORT
Reserved3
;
USHORT
DataIndex
;
USHORT
Reserved4
;
}
NotRange
;
}
DUMMYUNIONNAME
;
}
HIDP_BUTTON_CAPS
,
*
PHIDP_BUTTON_CAPS
;
typedef
struct
_HIDP_VALUE_CAPS
{
USAGE
UsagePage
;
UCHAR
ReportID
;
BOOLEAN
IsAlias
;
USHORT
BitField
;
USHORT
LinkCollection
;
USAGE
LinkUsage
;
USAGE
LinkUsagePage
;
BOOLEAN
IsRange
;
BOOLEAN
IsStringRange
;
BOOLEAN
IsDesignatorRange
;
BOOLEAN
IsAbsolute
;
BOOLEAN
HasNull
;
UCHAR
Reserved
;
USHORT
BitSize
;
USHORT
ReportCount
;
USHORT
Reserved2
[
5
];
ULONG
UnitsExp
;
ULONG
Units
;
LONG
LogicalMin
;
LONG
LogicalMax
;
LONG
PhysicalMin
;
LONG
PhysicalMax
;
union
{
struct
{
USAGE
UsageMin
;
USAGE
UsageMax
;
USHORT
StringMin
;
USHORT
StringMax
;
USHORT
DesignatorMin
;
USHORT
DesignatorMax
;
USHORT
DataIndexMin
;
USHORT
DataIndexMax
;
}
Range
;
struct
{
USAGE
Usage
;
USAGE
Reserved1
;
USHORT
StringIndex
;
USHORT
Reserved2
;
USHORT
DesignatorIndex
;
USHORT
Reserved3
;
USHORT
DataIndex
;
USHORT
Reserved4
;
}
NotRange
;
}
DUMMYUNIONNAME
;
}
HIDP_VALUE_CAPS
,
*
PHIDP_VALUE_CAPS
;
typedef
struct
_HIDP_PREPARSED_DATA
*
PHIDP_PREPARSED_DATA
;
typedef
struct
_HIDP_CAPS
{
USAGE
Usage
;
USAGE
UsagePage
;
USHORT
InputReportByteLength
;
USHORT
OutputReportByteLength
;
USHORT
FeatureReportByteLength
;
USHORT
Reserved
[
17
];
USHORT
NumberLinkCollectionNodes
;
USHORT
NumberInputButtonCaps
;
USHORT
NumberInputValueCaps
;
USHORT
NumberInputDataIndices
;
USHORT
NumberOutputButtonCaps
;
USHORT
NumberOutputValueCaps
;
USHORT
NumberOutputDataIndices
;
USHORT
NumberFeatureButtonCaps
;
USHORT
NumberFeatureValueCaps
;
USHORT
NumberFeatureDataIndices
;
}
HIDP_CAPS
,
*
PHIDP_CAPS
;
NTSTATUS
WINAPI
HidP_GetCaps
(
PHIDP_PREPARSED_DATA
PreparsedData
,
PHIDP_CAPS
Capabilities
);
#ifndef FACILITY_HID_ERROR_CODE
#define FACILITY_HID_ERROR_CODE 0x11
#endif
#define HIDP_ERROR_CODES(sev, code) ((NTSTATUS)(((sev) << 28) | (FACILITY_HID_ERROR_CODE << 16) | (code)))
#define HIDP_STATUS_SUCCESS (HIDP_ERROR_CODES(0x0,0x00))
#define HIDP_STATUS_NULL (HIDP_ERROR_CODES(0x8,0x01))
#define HIDP_STATUS_INVALID_PREPARSED_DATA (HIDP_ERROR_CODES(0xc,0x01))
#define HIDP_STATUS_INVALID_REPORT_TYPE (HIDP_ERROR_CODES(0xc,0x02))
#define HIDP_STATUS_INVALID_REPORT_LENGTH (HIDP_ERROR_CODES(0xc,0x03))
#define HIDP_STATUS_USAGE_NOT_FOUND (HIDP_ERROR_CODES(0xc,0x04))
#define HIDP_STATUS_VALUE_OUT_OF_RANGE (HIDP_ERROR_CODES(0xc,0x05))
#define HIDP_STATUS_BAD_LOG_PHY_VALUES (HIDP_ERROR_CODES(0xc,0x06))
#define HIDP_STATUS_BUFFER_TOO_SMALL (HIDP_ERROR_CODES(0xc,0x07))
#define HIDP_STATUS_INTERNAL_ERROR (HIDP_ERROR_CODES(0xc,0x08))
#define HIDP_STATUS_I8242_TRANS_UNKNOWN (HIDP_ERROR_CODES(0xc,0x09))
#define HIDP_STATUS_INCOMPATIBLE_REPORT_ID (HIDP_ERROR_CODES(0xc,0x0a))
#define HIDP_STATUS_NOT_VALUE_ARRAY (HIDP_ERROR_CODES(0xc,0x0b))
#define HIDP_STATUS_IS_VALUE_ARRAY (HIDP_ERROR_CODES(0xc,0x0c))
#define HIDP_STATUS_DATA_INDEX_NOT_FOUND (HIDP_ERROR_CODES(0xc,0x0d))
#define HIDP_STATUS_DATA_INDEX_OUT_OF_RANGE (HIDP_ERROR_CODES(0xc,0x0e))
#define HIDP_STATUS_BUTTON_NOT_PRESSED (HIDP_ERROR_CODES(0xc,0x0f))
#define HIDP_STATUS_REPORT_DOES_NOT_EXIST (HIDP_ERROR_CODES(0xc,0x10))
#define HIDP_STATUS_NOT_IMPLEMENTED (HIDP_ERROR_CODES(0xc,0x20))
#endif
/* __HIDPI_H__ */
include/ddk/hidsdi.h
View file @
ab3300cd
...
...
@@ -20,7 +20,7 @@
#define __WINE_HIDSDI_H
#include "hidusage.h"
/* FIXME: #include "hidpi.h" */
#include "hidpi.h"
#ifndef WINE_NTSTATUS_DECLARED
#define WINE_NTSTATUS_DECLARED
...
...
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