wireshark/plugins/easy_codec
Guy Harris 5d87a8c461 WS_DLL_PUBLIC is now always WS_DLL_PUBLIC_NOEXTERN with "extern" added;
just define WS_DLL_PUBLIC_NOEXTERN inside the ifdefs, and define
WS_DLL_PUBLIC as WS_DLL_PUBLIC_NOEXTERN followed by "extern".

Then rename WS_DLL_PUBLIC_NOEXTERN to WS_DLL_PUBLIC_DEF, to clarify that
it's what should be used for definitions; at least on Windows, you
*have* to use it when declaring arrays without a size, and, whilst you
might be able to use WS_DLL_PUBLIC for definitions of functions and
perhaps data definitions other than no-size arrays, it might be clearer
to rename WS_DLL_PUBLIC to WS_DLL_PUBLIC_DECL and use it only for
declarations.

svn path=/trunk/; revision=50334
2013-07-03 01:43:39 +00:00
..
Makefile.common Pull the definition of NODIST_HEADER_FILES up into 2013-02-09 20:15:18 +00:00
Makefile.nmake Export libwireshark symbols using WS_DLL_PUBLIC define 2013-03-01 23:53:11 +00:00
ReadMe.txt
codec-g722.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:29:52 +00:00
codec-g722.h Update FSF address - part II. 2012-06-28 23:18:38 +00:00
codec-g729a.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:29:52 +00:00
codec-g729a.h Update FSF address - part II. 2012-06-28 23:18:38 +00:00
codec-g7231.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:29:52 +00:00
codec-g7231.h Update FSF address - part II. 2012-06-28 23:18:38 +00:00
easy_codec_plugin.c WS_DLL_PUBLIC is now always WS_DLL_PUBLIC_NOEXTERN with "extern" added; 2013-07-03 01:43:39 +00:00
moduleinfo.nmake
plugin.rc.in

ReadMe.txt

Instructions on compiling the Easy Codecs
=========================================

1. Download the codec files from www.ImTelephone.com and install them in the following subdirectories.
	EasyG722
	EasyG7231
	EasyG729A

2. Build plugin.
	Win32: nmake -f makefile.nmake
	Linux: TO DO