Imported Upstream version 2.4.3
This commit is contained in:
commit
26fb71b504
446 changed files with 148951 additions and 0 deletions
69
drivers/hidparser.h
Normal file
69
drivers/hidparser.h
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
/*
|
||||
* hidparser.h: HID Parser header file
|
||||
*
|
||||
* This file is part of the MGE UPS SYSTEMS HID Parser.
|
||||
*
|
||||
* Copyright (C) 1998-2003 MGE UPS SYSTEMS,
|
||||
* Written by Luc Descotils.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
#ifndef HIDPARS_H
|
||||
#define HIDPARS_H
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#include "hidtypes.h"
|
||||
|
||||
/*
|
||||
* Parse_ReportDesc
|
||||
* -------------------------------------------------------------------------- */
|
||||
HIDDesc_t *Parse_ReportDesc(const unsigned char *ReportDesc, const int n);
|
||||
|
||||
/*
|
||||
* Free_ReportDesc
|
||||
* -------------------------------------------------------------------------- */
|
||||
void Free_ReportDesc(HIDDesc_t *pDesc);
|
||||
|
||||
/*
|
||||
* FindObject
|
||||
* -------------------------------------------------------------------------- */
|
||||
int FindObject(HIDDesc_t *pDesc, HIDData_t *pData);
|
||||
|
||||
HIDData_t *FindObject_with_Path(HIDDesc_t *pDesc, HIDPath_t *Path, uint8_t Type);
|
||||
|
||||
HIDData_t *FindObject_with_ID(HIDDesc_t *pDesc, uint8_t ReportID, uint8_t Offset, uint8_t Type);
|
||||
|
||||
/*
|
||||
* GetValue
|
||||
* -------------------------------------------------------------------------- */
|
||||
void GetValue(const unsigned char *Buf, HIDData_t *pData, long *pValue);
|
||||
|
||||
/*
|
||||
* SetValue
|
||||
* -------------------------------------------------------------------------- */
|
||||
void SetValue(const HIDData_t *pData, unsigned char *Buf, long Value);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue