Changeset 88
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.in
r86 r88 1 2 VERSION = 20061101 1 3 2 4 MAJOR = 1 … … 19 21 LDFLAGS = @LDFLAGS@ 20 22 LIBS = @LIBS@ 21 CFLAGS = -I./ @CPPFLAGS@ 23 CFLAGS = -I./ @CPPFLAGS@ -DTX80211_VERSION=$(VERSION) 22 24 LIBTOOL = @LIBTOOL@ 23 25 LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -
trunk/lorcon.3
r86 r88 14 14 struct tx80211_cardlist *tx80211_getcardlist() 15 15 void tx80211_freecardlist(struct tx80211_cardlist *in_list) 16 .ft 17 .LP 18 .ft B 19 int tx80211_getversion() 16 20 .ft 17 21 .LP … … 76 80 .PP 77 81 .SH ROUTINES 82 83 .PP 84 .BR tx80211_getversion() 85 is used to return the LORCON internal version, of the format YYYYMMRR 86 (year-month-release#) 78 87 79 88 .PP -
trunk/tx80211.c
r86 r88 34 34 #include "p54inject.h" 35 35 36 unsigned int tx80211_getversion() { 37 return TX80211_VERSION; 38 } 39 36 40 struct tx80211_cardlist *tx80211_getcardlist() 37 41 { -
trunk/tx80211.h
r86 r88 34 34 35 35 #define MAX_IFNAME_LEN 32 36 37 /* Get the version */ 38 unsigned int tx80211_getversion(); 36 39 37 40 /* Master tx80211 interface structure */
