packet-ppp.h/packet-rmt-common.h: Add #include <epan/params.h> (so certain other files need not do so).

Also: Add editor-modelines (packet-rmt-common.h)

Change-Id: Ib0c45285a9102bb21e8e3c216763ff8cc0150c32
Reviewed-on: https://code.wireshark.org/review/3611
Reviewed-by: Bill Meier <wmeier@newsguy.com>
This commit is contained in:
Bill Meier 2014-08-10 20:29:16 -04:00
parent 78dab888ae
commit c84578ca04
2 changed files with 16 additions and 0 deletions

View File

@ -22,6 +22,7 @@
#ifndef __PACKET_PPP_H__
#define __PACKET_PPP_H__
#include <epan/params.h>
#include "ws_symbol_export.h"
/* PPP options */

View File

@ -25,6 +25,8 @@
#ifndef __PACKET_RMT_COMMON__
#define __PACKET_RMT_COMMON__
#include <epan/params.h>
/* LCT preferences */
#define LCT_PREFS_EXT_192_NONE 0
@ -72,3 +74,16 @@ extern void fec_decode_ext_fti(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
extern double rmt_decode_send_rate(guint16 send_rate );
#endif
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 8
* tab-width: 8
* indent-tabs-mode: t
* End:
*
* vi: set shiftwidth=8 tabstop=8 noexpandtab:
* :indentSize=8:tabSize=8:noTabs=false:
*/