-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.c
More file actions
executable file
·35 lines (28 loc) · 890 Bytes
/
Copy pathplugin.c
File metadata and controls
executable file
·35 lines (28 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Do not modify this file.
*
* It is created automatically by Makefile or Makefile.nmake.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <gmodule.h>
#include "moduleinfo.h"
#ifndef ENABLE_STATIC
G_MODULE_EXPORT const gchar version[] = VERSION;
/* Start the functions we need for the plugin stuff */
G_MODULE_EXPORT void
plugin_register (void)
{
{extern void proto_register_crrvision (void); proto_register_crrvision ();}
{extern void proto_register_frcds (void); proto_register_frcds ();}
{extern void proto_register_netcon (void); proto_register_netcon ();}
}
G_MODULE_EXPORT void
plugin_reg_handoff(void)
{
{extern void proto_reg_handoff_crrvision (void); proto_reg_handoff_crrvision ();}
{extern void proto_reg_handoff_frcds (void); proto_reg_handoff_frcds ();}
{extern void proto_reg_handoff_netcon (void); proto_reg_handoff_netcon ();}
}
#endif