Packages

Elixir interface to Linux hidraw devices

Current section

Files

Jump to
hidraw src hidraw_enum.h
Raw

src/hidraw_enum.h

/*
* Copyright 2016 Justin Schneck
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef HIDRAW_ENUM_H
#define HIDRAW_ENUM_H
#define DEV "/dev"
#define HIDRAW_DEV_NAME "hidraw"
struct device_info {
char *fd;
char *name;
struct device_info *next;
};
struct device_info *device_info_alloc();
void device_info_free(struct device_info *info);
void device_info_free_list(struct device_info *info);
int enum_devices(void);
struct device_info *find_hidraw_devices();
#endif