aboutsummaryrefslogtreecommitdiffstats
path: root/make-tapreg-dotc
AgeCommit message (Collapse)AuthorFilesLines
2009-10-04Move make-tapreg-dotc to tools/make-tapreg-dotcKovarththanan Rajaratnam1-47/+0
svn path=/trunk/; revision=30284
2005-10-10Include "register.h" in the machine-generated code to register taps, soGuy Harris1-1/+2
that the definition of the function the machine-generated code defines is checked against the declaration of that function in "register.h". svn path=/trunk/; revision=16180
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-05-03Add an RCS ID.Guy Harris1-0/+4
svn path=/trunk/; revision=10776
2004-02-22Redesigned the menu structure of the former statistics stuff,Ulf Lamping1-19/+0
now sorted by ISO-layer, than alphabetically (now longer by functionality). Seperated the tap registering from the actual menu making stuff, so the seperate step of registering the tap and the menu is no longer needed. Removed all things related to this double registering. svn path=/trunk/; revision=10180
2003-04-23Allow taps to have menu item registration routines; the menu itemGuy Harris1-0/+19
registration routines, for taps with menu items (taps that can be run from the "Tools->Statistics" menu), create the menu item for the tap. "make-tapreg-dotc" constructs a "register_all_tap_menus()" function that calls all the tap menu item registration routines it finds, and Ethereal calls that routine after the main window has been constructed (so that the main menu exists, as the menu items are added to it). (Tethereal doesn't call it.) Get rid of the "menu" and "menu_init" arguments to "register_ethereal_tap"; the menu item is registered in the tap's menu item registration routine, not in its main registration routine. Have the RTP GUI tap register its menu item that way, rather than by having it compiled into "gtk/menu.c". (We're not ready yet to have taps whose menu items are under a submenu register themselves in that fashion, as "register_tap_menu_item()" can't yet create submenus.) svn path=/trunk/; revision=7540
2002-10-31From Ronnie Sahlberg: have a registration interface for tap listeners,Guy Harris1-0/+42
and generate the table of stuff to register from tap source files, so Tethereal doesn't need to know what tap listeners exist. Get rid of "tap-xxx.h" files, as they're now empty. Add "tethereal-tap-register.c" to the .cvsignore file, as it's a new generated file. Update "Makefile.nmake" to generate "tethereal-tap-register.c". Clean up "Makefile.am" and "Makefile.nmake" a bit. svn path=/trunk/; revision=6525