wireshark/plugins
Guy Harris 8a8b883450 Set the svn:eol-style property on all text files to "native", so that
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-07-18 00:24:25 +00:00
..
acn Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
artnet Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
asn1 Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
ciscosm Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
docsis Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
enttec Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
giop Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
gryphon Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
irda Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
lwres Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
megaco Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
mgcp Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
pcli Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
rdm Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
rlm Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
rtnet Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
rudp Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
v5ua Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
.cvsignore xyzzy 2003-09-29 19:32:14 +00:00
Makefile.am Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
Makefile.nmake Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
README.interface From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00
Xass-list Add "crc16_ccitt_tvb()" to the plugin API and the list of functions 2004-06-30 08:22:56 +00:00
Xplugin_api.c Add "crc16_ccitt_tvb()" to the plugin API and the list of functions 2004-06-30 08:22:56 +00:00
Xplugin_api.h Add "crc16_ccitt_tvb()" to the plugin API and the list of functions 2004-06-30 08:22:56 +00:00
Xplugin_api_decls.h Add "crc16_ccitt_tvb()" to the plugin API and the list of functions 2004-06-30 08:22:56 +00:00
Xplugin_table.h Add "crc16_ccitt_tvb()" to the plugin API and the list of functions 2004-06-30 08:22:56 +00:00
plugin_api.c Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
plugin_api.h Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
plugin_api_decls.h Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
plugin_api_defs.h Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
plugin_api_list.c Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
plugin_gen.py Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00
plugin_table.h Set the svn:eol-style property on all text files to "native", so that 2004-07-18 00:24:25 +00:00

README.interface

README.interface

When developing a plugin in the Win32 world, it is nessecary
to explicitly export addresses from the main process to the
plugin.  ethereal does have a mechanism for this, and it uses
the file 'plugin_api_list.c' to list declarations for everything
that needs to be exported.

The build process of ethereal needs this list in 5 different forms.

These are generated by a Python script and saved in the X* files
in this directory.

I do not have a real C parser in Python to read the input file...,
so I have used 'gcc -aux-info xyzzy ...' to clean up any formatting
preferences in the input file and create the file named 'xyzzy'
that contains a neatly formatted list of declarations.  This list
can be parsed with a regular expression to extract the required
info.

Use the following procedure when updateing the plugin_api_list.c file:

nmake -f Makefile.nmake xyzzy
nmake -f Makefile.nmake

The 'xyzzy' makefile target is the only target that depends on gcc.
This can be done on a Unix machine or you can use cygwin gcc.