summaryrefslogtreecommitdiffstats
path: root/commandline/hidsdi.h
diff options
context:
space:
mode:
authorJenna Fox <a@creativepony.com>2012-09-29 16:58:01 -0700
committerJenna Fox <a@creativepony.com>2012-09-29 16:58:01 -0700
commit35cc54629ade1abfb801b832534f6c7f45eff20c (patch)
tree15798a560eef8fbb72c5545f29619816e58a436a /commandline/hidsdi.h
parent71649f3ec1b38fa4e38dffc77cc7eec314daa6a1 (diff)
parent2f46526de0ed0c9de27c58d4438b9c98e9b5a3c5 (diff)
downloadmicronucleus-35cc54629ade1abfb801b832534f6c7f45eff20c.tar.gz
micronucleus-35cc54629ade1abfb801b832534f6c7f45eff20c.tar.bz2
micronucleus-35cc54629ade1abfb801b832534f6c7f45eff20c.zip
Merge pull request #9 from kehribar/master
Experimental C commandline application has been added.
Diffstat (limited to 'commandline/hidsdi.h')
-rwxr-xr-xcommandline/hidsdi.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/commandline/hidsdi.h b/commandline/hidsdi.h
deleted file mode 100755
index cabb995..0000000
--- a/commandline/hidsdi.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/* Name: hidsdi.h
- * Project: usbcalls library
- * Author: Christian Starkjohann
- * Creation Date: 2006-02-02
- * Tabsize: 4
- * Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: Proprietary, free under certain conditions. See Documentation.
- * This Revision: $Id: hidsdi.h 281 2007-03-20 13:22:10Z cs $
- */
-
-/*
-General Description
-This file is a replacement for hidsdi.h from the Windows DDK. It defines some
-of the types and function prototypes of this header for our project. If you
-have the Windows DDK version of this file or a version shipped with MinGW, use
-that instead.
-*/
-
-#ifndef _HIDSDI_H
-#define _HIDSDI_H
-
-#include <pshpack4.h>
-
-#include <ddk/hidusage.h>
-#include <ddk/hidpi.h>
-
-typedef struct{
- ULONG Size;
- USHORT VendorID;
- USHORT ProductID;
- USHORT VersionNumber;
-}HIDD_ATTRIBUTES;
-
-void __stdcall HidD_GetHidGuid(OUT LPGUID hidGuid);
-
-BOOLEAN __stdcall HidD_GetAttributes(IN HANDLE device, OUT HIDD_ATTRIBUTES *attributes);
-
-BOOLEAN __stdcall HidD_GetManufacturerString(IN HANDLE device, OUT void *buffer, IN ULONG bufferLen);
-BOOLEAN __stdcall HidD_GetProductString(IN HANDLE device, OUT void *buffer, IN ULONG bufferLen);
-BOOLEAN __stdcall HidD_GetSerialNumberString(IN HANDLE device, OUT void *buffer, IN ULONG bufferLen);
-
-BOOLEAN __stdcall HidD_GetFeature(IN HANDLE device, OUT void *reportBuffer, IN ULONG bufferLen);
-BOOLEAN __stdcall HidD_SetFeature(IN HANDLE device, IN void *reportBuffer, IN ULONG bufferLen);
-
-BOOLEAN __stdcall HidD_GetNumInputBuffers(IN HANDLE device, OUT ULONG *numBuffers);
-BOOLEAN __stdcall HidD_SetNumInputBuffers(IN HANDLE device, OUT ULONG numBuffers);
-
-#include <poppack.h>
-
-#endif