~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hello_world/hello_world.cc

  • Committer: Brian Aker
  • Date: 2008-07-20 07:36:57 UTC
  • Revision ID: brian@tangent.org-20080720073657-qrzqnfu31mut8vjd
my_bool...

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <my_global.h>
22
22
#include <my_dir.h>
23
23
 
24
 
my_bool udf_init_hello_world(UDF_INIT *initid, UDF_ARGS *args, char *message)
 
24
bool udf_init_hello_world(UDF_INIT *initid, UDF_ARGS *args, char *message)
25
25
{
26
26
  /* this is how to fail */
27
27
  if (args->arg_count != 0)  {