]> sigrok.org Git - sigrok-util.git/blobdiff - source/drv-protocol.h
sigrok-native-macosx: Fix an issue with recent boost versions.
[sigrok-util.git] / source / drv-protocol.h
index c12e6ba6d11fe0194f45e559a9f4ff6ebfeda3b7..c417f5dd016d052a4f56e985fc53a04d6d233578 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrok project.
  *
- * Copyright (C) ${year} ${author} <${email}>
+ * Copyright (C) {year} {author} <{email}>
  *
  * 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
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#ifndef LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H
+#define LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H
 
-#ifndef LIBSIGROK_${upper}_H
-#define LIBSIGROK_${upper}_H
+#include <stdint.h>
+#include <glib.h>
+#include <libsigrok/libsigrok.h>
+#include "libsigrok-internal.h"
 
-/* Private, per-device-instance driver context. */
-struct dev_context {
-       uint64_t limit_samples;
-       uint64_t limit_msec;
+#define LOG_PREFIX "{short}"
 
-       /* Opaque pointer passed in by the frontend. */
-       void *cb_data;
+struct dev_context {{
+}};
 
-       /* Runtime. */
-       uint64_t num_samples;
-};
-
-SR_PRIV int ${lib}_receive_data(int fd, int revents, void *cb_data);
+SR_PRIV int {lib}_receive_data(int fd, int revents, void *cb_data);
 
 #endif