~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_gearman/logging_gearman.cc

Merged in some naming things.

Show diffs side-by-side

added added

removed removed

Lines of Context:
326
326
                          NULL, /* update func*/
327
327
                          "drizzlelog" /* default */);
328
328
 
329
 
static struct st_mysql_sys_var* logging_gearman_system_variables[]= {
 
329
static drizzle_sys_var* logging_gearman_system_variables[]= {
330
330
  DRIZZLE_SYSVAR(enable),
331
331
  DRIZZLE_SYSVAR(host),
332
332
  DRIZZLE_SYSVAR(function),
333
333
  NULL
334
334
};
335
335
 
336
 
drizzle_declare_plugin
 
336
DRIZZLE_DECLARE_PLUGIN
337
337
{
338
338
    "logging_gearman",
339
339
    "0.1",
346
346
    logging_gearman_system_variables,
347
347
    NULL
348
348
}
349
 
drizzle_declare_plugin_end;
 
349
DRIZZLE_DECLARE_PLUGIN_END;