X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=30d42a53946d3913b516c4f8bfeeefb1900003a3;hp=0045b17147f76227e7b23643d2739f1e0950e271;hb=ad18a0b37756c5e7ace228c4ef488b893bec2fc3;hpb=36c9d998af693111f1135dd676c729766753778d diff --git a/source/drv-protocol.h b/source/drv-protocol.h index 0045b17..30d42a5 100644 --- a/source/drv-protocol.h +++ b/source/drv-protocol.h @@ -1,7 +1,7 @@ /* * 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 @@ -17,19 +17,18 @@ * along with this program. If not, see . */ -#ifndef LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H -#define LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H +#ifndef LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H +#define LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H #include #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" -/* Message logging helpers with subsystem-specific prefix string. */ -#define LOG_PREFIX "${short}" +#define LOG_PREFIX "{short}" /** Private, per-device-instance driver context. */ -struct dev_context { +struct dev_context {{ /* Model-specific information */ /* Acquisition settings */ @@ -38,8 +37,8 @@ struct dev_context { /* Temporary state across callbacks */ -}; +}}; -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