Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
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
|