]> sigrok.org Git - libsigrok.git/commitdiff
Start moving private stuff to sigrok-internal.h.
authorUwe Hermann <redacted>
Sat, 15 Jan 2011 14:06:58 +0000 (15:06 +0100)
committerUwe Hermann <redacted>
Sat, 15 Jan 2011 14:57:54 +0000 (15:57 +0100)
This is work-in-progress, unfinished.

Makefile.am
hardware/common/serial.c
hardware/link-mso19/link-mso19.c
hardware/openbench-logic-sniffer/ols.c
sigrok-internal.h [new file with mode: 0644]
sigrok-proto.h

index 4d532e0c6ab5ea72c4f5bd8b696165ee7406f49d..94672f333618981728d3ecabb875824497b71356 100644 (file)
@@ -39,6 +39,7 @@ libsigrok_la_LIBADD = \
        output/libsigrokoutput.la
 
 include_HEADERS = sigrok.h sigrok-proto.h
+noinst_HEADERS = sigrok-internal.h
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = libsigrok.pc
index 853c26afb06c957e45fd0a3c2c715a75a49cb273..46d4ad0535d8c4d3b6cb65509216a800a51111cf 100644 (file)
 #include <stdlib.h>
 #include <glib.h>
 #include <sigrok.h>
+#include <sigrok-internal.h>
 
 // FIXME: Must be moved, or rather passed as function argument.
 #ifdef _WIN32
 HANDLE hdl;
 #endif
 
-char *serial_port_glob[] = {
+const char *serial_port_glob[] = {
        /* Linux */
        "/dev/ttyS*",
        "/dev/ttyUSB*",
index 16176ffa287fca8bc7b39a13e427584fffccfd7b..05729556495d0265204ead4aba3ce36a1b043dc4 100644 (file)
@@ -28,6 +28,7 @@
 #include <libudev.h>
 #include <sigrok.h>
 #include <arpa/inet.h>
+#include <sigrok-internal.h>
 #include "config.h"
 #include "link-mso19.h"
 
index 3d69dc97db30d51a9fe4b2015b6dedc98226840b..582a258c9b881abc3d7f427dc554028dae082232 100644 (file)
@@ -37,6 +37,7 @@
 #endif
 #include <glib.h>
 #include <sigrok.h>
+#include <sigrok-internal.h>
 
 #ifdef _WIN32
 #define O_NONBLOCK FIONBIO
diff --git a/sigrok-internal.h b/sigrok-internal.h
new file mode 100644 (file)
index 0000000..e8b6fc1
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * This file is part of the sigrok project.
+ *
+ * Copyright (C) 2011 Bert Vermeulen <bert@biot.com>
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef SIGROK_SIGROK_INTERNAL_H
+#define SIGROK_SIGROK_INTERNAL_H
+
+GSList *list_serial_ports(void);
+int serial_open(const char *pathname, int flags);
+int serial_close(int fd);
+int serial_flush(int fd);
+int serial_write(int fd, const void *buf, size_t count);
+int serial_read(int fd, void *buf, size_t count);
+void *serial_backup_params(int fd);
+void serial_restore_params(int fd, void *backup);
+int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
+                     int flowcontrol);
+
+#endif
index 37d867eda6f3ca2a3be40ec765f821397c9ab1d0..baa6ea12e74fe0c1840ea309e8ce102102b0d3d4 100644 (file)
@@ -117,17 +117,6 @@ int ezusb_install_firmware(libusb_device_handle *hdl, char *filename);
 int ezusb_upload_firmware(libusb_device *dev, int configuration,
                           const char *filename);
 
-GSList *list_serial_ports(void);
-int serial_open(const char *pathname, int flags);
-int serial_close(int fd);
-int serial_flush(int fd);
-int serial_write(int fd, const void *buf, size_t count);
-int serial_read(int fd, void *buf, size_t count);
-void *serial_backup_params(int fd);
-void serial_restore_params(int fd, void *backup);
-int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
-                     int flowcontrol);
-
 /* libsigrok/hardware/common/misc.c */
 /* TODO: Should not be public. */
 int opendev2(int device_index, struct sigrok_device_instance **sdi,