wireshark/plugins
Jörg Mayer 7a593c3d3c check in the following comment:
/* XXX This code is neither Endianess independent, nor will it work
     * on platforms that do not support the *optional* guin64 type
     */

svn path=/trunk/; revision=8626
2003-10-06 15:41:53 +00:00
..
artnet - Make --enable-static work again (configure.in, Makefile.am) 2003-09-05 07:44:50 +00:00
docsis Get rid of another strict-aliasing warning: 2003-10-05 22:38:09 +00:00
giop - Make --enable-static work again (configure.in, Makefile.am) 2003-09-05 07:44:50 +00:00
gryphon check in the following comment: 2003-10-06 15:41:53 +00:00
lwres - Make --enable-static work again (configure.in, Makefile.am) 2003-09-05 07:44:50 +00:00
megaco From Anders Broman: fix a crash, and fix trailing whitespace on 2003-09-24 18:41:37 +00:00
mgcp - Make --enable-static work again (configure.in, Makefile.am) 2003-09-05 07:44:50 +00:00
pcli - Make --enable-static work again (configure.in, Makefile.am) 2003-09-05 07:44:50 +00:00
rtnet RTNET has no preferences, so don't register a preferences module for it. 2003-10-02 21:04:32 +00:00
.cvsignore xyzzy 2003-09-29 19:32:14 +00:00
Makefile.am Get plugins/README.interface into the source tarball. 2003-08-18 21:43:21 +00:00
Makefile.nmake Define GCC_GLIB_CFLAGS as a GCC equivalent of GLIB_CFLAGS, and use it 2003-08-19 02:16:26 +00:00
README.interface From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00
Xass-list From Tomas Kukosa: 2003-09-24 18:35:58 +00:00
Xplugin_api.c From Tomas Kukosa: 2003-09-24 18:35:58 +00:00
Xplugin_api.h From Tomas Kukosa: 2003-09-24 18:35:58 +00:00
Xplugin_api_decls.h From Tomas Kukosa: 2003-09-24 18:35:58 +00:00
Xplugin_table.h From Tomas Kukosa: 2003-09-24 18:35:58 +00:00
plugin_api.c From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00
plugin_api.h From Tomas Kukosa: 2003-09-24 18:35:58 +00:00
plugin_api_decls.h From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00
plugin_api_defs.h Removed trailing whitespaces from .h and .c files using the 2002-08-28 20:41:00 +00:00
plugin_api_list.c From Tomas Kukosa: 2003-09-24 18:35:58 +00:00
plugin_gen.py The Python 1.5.2 I have installed didn't seem to like "+=", so use "x = 2003-08-23 07:34:31 +00:00
plugin_table.h From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +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.