~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hello_world/hello_world.cc

MergingĀ fromĀ Mark.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
  return 0;
98
98
}
99
99
 
100
 
struct st_mysql_udf hello_world_plugin=
101
 
{ MYSQL_UDF_INTERFACE_VERSION  };
102
 
 
103
100
mysql_declare_plugin(hello_world)
104
101
{
105
102
  MYSQL_UDF_PLUGIN,
106
 
  &hello_world_plugin,
107
103
  "hello_world",
 
104
  "1.0",
108
105
  "Mark Atwood",
109
106
  "Hello, world!",
110
107
  PLUGIN_LICENSE_GPL,
111
108
  hello_world_plugin_init, /* Plugin Init */
112
109
  hello_world_plugin_deinit, /* Plugin Deinit */
113
 
  0x0100,  /* 1.0 */
114
110
  NULL,   /* status variables */
115
111
  NULL,   /* system variables */
116
112
  NULL    /* config options */