* include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h, d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h, mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h, newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h, ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h, scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h, tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h, usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h, winnt4.h, ws2san.h): Fixed packing. * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration. * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE, HID_INTERFACE_NOTIFY_PNP): Likewise. * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise. (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes <ayerkes@speakeasy.net>. * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed declaration. * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise. * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL, PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL, PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE, PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY, PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE, PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE, PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations. (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION. (SYNCH_LEVEL): Added definition. (KPCR, KPCR_TIB): Fixed declaration. (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't included and _WIN32_WINNT >= 0x0501. (RtlEqualLuid): Fixed macro definition. (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and KeRaiseIrql on i386 architectures.
		
			
				
	
	
		
			116 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * ntddmou.h
 | 
						|
 *
 | 
						|
 * Mouse device IOCTL interface.
 | 
						|
 *
 | 
						|
 * This file is part of the w32api package.
 | 
						|
 *
 | 
						|
 * Contributors:
 | 
						|
 *   Created by Casper S. Hornstrup <chorns@users.sourceforge.net>
 | 
						|
 *
 | 
						|
 * THIS SOFTWARE IS NOT COPYRIGHTED
 | 
						|
 *
 | 
						|
 * This source code is offered for use in the public domain. You may
 | 
						|
 * use, modify or distribute it freely.
 | 
						|
 *
 | 
						|
 * This code is distributed in the hope that it will be useful but
 | 
						|
 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
 | 
						|
 * DISCLAIMED. This includes but is not limited to warranties of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __NTDDMOU_H
 | 
						|
#define __NTDDMOU_H
 | 
						|
 | 
						|
#if __GNUC__ >=3
 | 
						|
#pragma GCC system_header
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#include "ntddk.h"
 | 
						|
 | 
						|
#define DD_MOUSE_DEVICE_NAME              "\\Device\\PointerClass"
 | 
						|
#define DD_MOUSE_DEVICE_NAME_U            L"\\Device\\PointerClass"
 | 
						|
 | 
						|
#define IOCTL_MOUSE_QUERY_ATTRIBUTES \
 | 
						|
  CTL_CODE(FILE_DEVICE_MOUSE, 0, METHOD_BUFFERED, FILE_ANY_ACCESS)
 | 
						|
 | 
						|
DEFINE_GUID(GUID_DEVINTERFACE_MOUSE, \
 | 
						|
  0x378de44c, 0x56ef, 0x11d1, 0xbc, 0x8c, 0x00, 0xa0, 0xc9, 0x14, 0x05, 0xdd);
 | 
						|
 | 
						|
#define MOUSE_ERROR_VALUE_BASE            20000
 | 
						|
 | 
						|
/* MOUSE_INPUT_DATA.ButtonFlags constants */
 | 
						|
#define MOUSE_LEFT_BUTTON_DOWN            0x0001
 | 
						|
#define MOUSE_LEFT_BUTTON_UP              0x0002
 | 
						|
#define MOUSE_RIGHT_BUTTON_DOWN           0x0004
 | 
						|
#define MOUSE_RIGHT_BUTTON_UP             0x0008
 | 
						|
#define MOUSE_MIDDLE_BUTTON_DOWN          0x0010
 | 
						|
#define MOUSE_MIDDLE_BUTTON_UP            0x0020
 | 
						|
#define MOUSE_BUTTON_4_DOWN               0x0040
 | 
						|
#define MOUSE_BUTTON_4_UP                 0x0080
 | 
						|
#define MOUSE_BUTTON_5_DOWN               0x0100
 | 
						|
#define MOUSE_BUTTON_5_UP                 0x0200
 | 
						|
#define MOUSE_WHEEL                       0x0400
 | 
						|
 | 
						|
#define MOUSE_BUTTON_1_DOWN               MOUSE_LEFT_BUTTON_DOWN
 | 
						|
#define MOUSE_BUTTON_1_UP                 MOUSE_LEFT_BUTTON_UP
 | 
						|
#define MOUSE_BUTTON_2_DOWN               MOUSE_RIGHT_BUTTON_DOWN
 | 
						|
#define MOUSE_BUTTON_2_UP                 MOUSE_RIGHT_BUTTON_UP
 | 
						|
#define MOUSE_BUTTON_3_DOWN               MOUSE_MIDDLE_BUTTON_DOWN
 | 
						|
#define MOUSE_BUTTON_3_UP                 MOUSE_MIDDLE_BUTTON_UP
 | 
						|
 | 
						|
/* MOUSE_INPUT_DATA.Flags constants */
 | 
						|
#define MOUSE_MOVE_RELATIVE               0
 | 
						|
#define MOUSE_MOVE_ABSOLUTE               1
 | 
						|
#define MOUSE_VIRTUAL_DESKTOP             0x02
 | 
						|
#define MOUSE_ATTRIBUTES_CHANGED          0x04
 | 
						|
 | 
						|
typedef struct _MOUSE_INPUT_DATA {
 | 
						|
	USHORT  UnitId;
 | 
						|
	USHORT  Flags;
 | 
						|
	_ANONYMOUS_UNION union {
 | 
						|
		ULONG Buttons;
 | 
						|
		_ANONYMOUS_STRUCT struct  {
 | 
						|
			USHORT  ButtonFlags;
 | 
						|
			USHORT  ButtonData;
 | 
						|
		} DUMMYSTRUCTNAME;
 | 
						|
	} DUMMYUNIONNAME;
 | 
						|
	ULONG  RawButtons;
 | 
						|
	LONG  LastX;
 | 
						|
	LONG  LastY;
 | 
						|
	ULONG  ExtraInformation;
 | 
						|
} MOUSE_INPUT_DATA, *PMOUSE_INPUT_DATA;
 | 
						|
 | 
						|
typedef struct _MOUSE_UNIT_ID_PARAMETER {
 | 
						|
  USHORT  UnitId;
 | 
						|
} MOUSE_UNIT_ID_PARAMETER, *PMOUSE_UNIT_ID_PARAMETER;
 | 
						|
 | 
						|
/* MOUSE_ATTRIBUTES.MouseIdentifier constants */
 | 
						|
#define MOUSE_INPORT_HARDWARE             0x0001
 | 
						|
#define MOUSE_I8042_HARDWARE              0x0002
 | 
						|
#define MOUSE_SERIAL_HARDWARE             0x0004
 | 
						|
#define BALLPOINT_I8042_HARDWARE          0x0008
 | 
						|
#define BALLPOINT_SERIAL_HARDWARE         0x0010
 | 
						|
#define WHEELMOUSE_I8042_HARDWARE         0x0020
 | 
						|
#define WHEELMOUSE_SERIAL_HARDWARE        0x0040
 | 
						|
#define MOUSE_HID_HARDWARE                0x0080
 | 
						|
#define WHEELMOUSE_HID_HARDWARE           0x0100
 | 
						|
 | 
						|
typedef struct _MOUSE_ATTRIBUTES {
 | 
						|
  USHORT  MouseIdentifier;
 | 
						|
  USHORT  NumberOfButtons;
 | 
						|
  USHORT  SampleRate;
 | 
						|
  ULONG  InputDataQueueLength;
 | 
						|
} MOUSE_ATTRIBUTES, *PMOUSE_ATTRIBUTES;
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* __NTDDMOU_H */
 |