mirror of
https://github.com/ceph/ceph
synced 2024-12-25 12:54:16 +00:00
32 lines
574 B
C
32 lines
574 B
C
/*
|
|
* 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_ceph (void); proto_register_ceph ();}
|
|
}
|
|
|
|
G_MODULE_EXPORT void
|
|
plugin_reg_handoff(void)
|
|
{
|
|
{extern void proto_reg_handoff_ceph (void); proto_reg_handoff_ceph ();}
|
|
}
|
|
#endif
|