nut-debian/drivers/hidparser.h

85 lines
2.6 KiB
C
Raw Permalink Normal View History

2010-03-26 01:20:59 +02:00
/*
* 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
*
* -------------------------------------------------------------------------- */
2022-07-10 10:23:45 +03:00
#ifndef NUT_HID_PARSER_H_SEEN
#define NUT_HID_PARSER_H_SEEN
2010-03-26 01:20:59 +02:00
#ifdef __cplusplus
2011-01-26 11:35:08 +02:00
/* *INDENT-OFF* */
2010-03-26 01:20:59 +02:00
extern "C" {
2011-01-26 11:35:08 +02:00
/* *INDENT-ON* */
2010-03-26 01:20:59 +02:00
#endif /* __cplusplus */
2022-07-10 10:23:45 +03:00
#include "config.h"
2010-03-26 01:20:59 +02:00
#include "hidtypes.h"
2022-07-10 10:23:45 +03:00
/* Include "usb-common.h" or "libshut.h" as appropriate, to define the
* usb_ctrl_* types used below according to the backend USB API version
*/
#ifdef SHUT_MODE
# include "libshut.h"
#else
# include "usb-common.h"
#endif
2010-03-26 01:20:59 +02:00
/*
* Parse_ReportDesc
* -------------------------------------------------------------------------- */
2022-07-10 10:23:45 +03:00
HIDDesc_t *Parse_ReportDesc(const usb_ctrl_charbuf ReportDesc, const usb_ctrl_charbufsize n);
2010-03-26 01:20:59 +02:00
/*
* Free_ReportDesc
* -------------------------------------------------------------------------- */
2022-07-10 10:23:45 +03:00
void Free_ReportDesc(HIDDesc_t *pDesc_arg);
2010-03-26 01:20:59 +02:00
/*
* FindObject
* -------------------------------------------------------------------------- */
2022-07-10 10:23:45 +03:00
int FindObject(HIDDesc_t *pDesc_arg, HIDData_t *pData);
2010-03-26 01:20:59 +02:00
2022-07-10 10:23:45 +03:00
HIDData_t *FindObject_with_Path(HIDDesc_t *pDesc_arg, HIDPath_t *Path, uint8_t Type);
2010-03-26 01:20:59 +02:00
2022-07-10 10:23:45 +03:00
HIDData_t *FindObject_with_ID(HIDDesc_t *pDesc_arg, uint8_t ReportID, uint8_t Offset, uint8_t Type);
2010-03-26 01:20:59 +02:00
2022-07-10 10:23:45 +03:00
HIDData_t *FindObject_with_ID_Node(HIDDesc_t *pDesc_arg, uint8_t ReportID, HIDNode_t Node);
2010-03-26 01:20:59 +02:00
/*
* 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
2011-01-26 11:35:08 +02:00
/* *INDENT-OFF* */
2010-03-26 01:20:59 +02:00
} /* extern "C" */
2011-01-26 11:35:08 +02:00
/* *INDENT-ON* */
2010-03-26 01:20:59 +02:00
#endif /* __cplusplus */
2022-07-10 10:23:45 +03:00
#endif /* NUT_HID_PARSER_H_SEEN */