~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to wireshark/ceph/plugin.c

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-07-16 09:56:24 UTC
  • mfrom: (0.3.11)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: package-import@ubuntu.com-20120716095624-azr2w4hbhei1rxmx
Tags: upstream-0.48
ImportĀ upstreamĀ versionĀ 0.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Do not modify this file.
 
3
 *
 
4
 * It is created automatically by Makefile or Makefile.nmake.
 
5
 */
 
6
 
 
7
#ifdef HAVE_CONFIG_H
 
8
# include "config.h"
 
9
#endif
 
10
 
 
11
#include <gmodule.h>
 
12
 
 
13
#include "moduleinfo.h"
 
14
 
 
15
#ifndef ENABLE_STATIC
 
16
G_MODULE_EXPORT const gchar version[] = VERSION;
 
17
 
 
18
/* Start the functions we need for the plugin stuff */
 
19
 
 
20
G_MODULE_EXPORT void
 
21
plugin_register (void)
 
22
{
 
23
  {extern void proto_register_ceph (void); proto_register_ceph ();}
 
24
}
 
25
 
 
26
G_MODULE_EXPORT void
 
27
plugin_reg_handoff(void)
 
28
{
 
29
  {extern void proto_reg_handoff_ceph (void); proto_reg_handoff_ceph ();}
 
30
}
 
31
#endif