chiark / gitweb /
Update .gitignore for recent debhelper droppings.
[chiark-tcl.git] / wiringpi / chiark_tcl_wiringpi.h
1 /*
2  * wiringPi binding for Tcl
3  * Copyright 2016 Ian Jackson
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this library; if not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef WIRINGPITCL_H
20 #define WIRINGPITCL_H
21
22 #include "chiark-tcl.h"
23
24 typedef struct {
25   const char *name;
26   void (*func)(int pin);
27 } WiringPiTclModeInfo;
28
29 #include "wiringpi+tcmdif.h"
30
31 #endif /*WIRINGPITCL_H*/