From eb54324f18f325727d5574110b686610b2861f12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Sun, 11 Feb 2001 23:20:33 +0000 Subject: [PATCH] * added RIG_TYPE_PCRECEIVER git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@372 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- tests/listrigs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/listrigs.c b/tests/listrigs.c index 52fa5b9bd..cae638414 100644 --- a/tests/listrigs.c +++ b/tests/listrigs.c @@ -3,7 +3,7 @@ * This programs list all the available the rig capabilities. * * - * $Id: listrigs.c,v 1.4 2001-02-07 23:45:59 f4cfe Exp $ + * $Id: listrigs.c,v 1.5 2001-02-11 23:20:33 f4cfe Exp $ * * * This program is free software; you can redistribute it and/or @@ -71,6 +71,9 @@ int print_caps_sum(const struct rig_caps *caps, void *data) case RIG_TYPE_RECEIVER: printf("Receiver\n"); break; + case RIG_TYPE_PCRECEIVER: + printf("PC Receiver\n"); + break; case RIG_TYPE_SCANNER: printf("Scanner\n"); break;