]> sigrok.org Git - libsigrok.git/blame - sigrok-internal.h
Make load_hwplugins() private.
[libsigrok.git] / sigrok-internal.h
CommitLineData
1483577e
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2011 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef SIGROK_SIGROK_INTERNAL_H
21#define SIGROK_SIGROK_INTERNAL_H
22
8233ff53
UH
23/*--- hwplugin.c ------------------------------------------------------------*/
24
25int load_hwplugins(void);
26
058b7035
UH
27/*--- hardware/common/serial.c ----------------------------------------------*/
28
1483577e
UH
29GSList *list_serial_ports(void);
30int serial_open(const char *pathname, int flags);
31int serial_close(int fd);
32int serial_flush(int fd);
33int serial_write(int fd, const void *buf, size_t count);
34int serial_read(int fd, void *buf, size_t count);
35void *serial_backup_params(int fd);
36void serial_restore_params(int fd, void *backup);
37int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
38 int flowcontrol);
39
058b7035
UH
40/*--- hardware/common/ezusb.c -----------------------------------------------*/
41
22b02383 42#ifdef HAVE_LIBUSB_1_0
058b7035
UH
43int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
44int ezusb_install_firmware(libusb_device_handle *hdl, char *filename);
45int ezusb_upload_firmware(libusb_device *dev, int configuration,
46 const char *filename);
22b02383 47#endif
058b7035
UH
48
49/*--- hardware/common/misc.c ------------------------------------------------*/
50
22b02383 51#ifdef HAVE_LIBUSB_1_0
a00ba012 52int opendev2(int device_index, struct sr_device_instance **sdi,
058b7035
UH
53 libusb_device *dev, struct libusb_device_descriptor *des,
54 int *skip, uint16_t vid, uint16_t pid, int interface);
a00ba012 55int opendev3(struct sr_device_instance **sdi, libusb_device *dev,
058b7035
UH
56 struct libusb_device_descriptor *des,
57 uint16_t vid, uint16_t pid, int interface);
22b02383 58#endif
058b7035 59
1483577e 60#endif