windows-nt/Source/XPSP1/NT/drivers/wdm/input/client/hclient/ecdisp.h
2020-09-26 16:20:57 +08:00

78 lines
1.7 KiB
C

/*++
Copyright (c) Microsoft 1998, All Rights Reserved
Module Name:
ecdisp.h
Abstract:
This module contains the public declarations for the extended calls dialog
box.
Environment:
User mode
Revision History:
May-98 : Created
--*/
#ifndef _ECDISP_H_
#define _ECDISP_H_
typedef struct {
HANDLE DeviceHandle;
HIDP_REPORT_TYPE ReportType;
PHIDP_PREPARSED_DATA Ppd;
USAGE UsagePage;
USAGE Usage;
USHORT LinkCollection;
UCHAR ReportID;
PCHAR ReportBuffer;
ULONG ReportLength;
PVOID List;
ULONG ListLength;
ULONG Index;
union {
struct {
USHORT ReportCount;
USHORT BitSize;
};
struct {
PUSAGE List2;
PUSAGE MakeList;
PUSAGE BreakList;
};
PHIDP_PREPARSED_DATA *ppPd;
ULONG Value;
LONG ScaledValue;
};
} EXTCALL_PARAMS, *PEXTCALL_PARAMS;
typedef struct {
BOOL IsHidError;
NTSTATUS HidErrorCode;
} EXTCALL_STATUS, *PEXTCALL_STATUS;
/*****************************************************************************
/* Global Extended Call display function declarations
/*****************************************************************************/
LRESULT CALLBACK
bExtCallDlgProc(
HWND hDlg,
UINT message,
WPARAM wParam,
LPARAM lParam
);
#endif