~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/src/thread_xt.h

  • Committer: Brian Aker
  • Date: 2010-10-28 17:12:01 UTC
  • mfrom: (1887.1.3 merge)
  • Revision ID: brian@tangent.org-20101028171201-baj6l1bnntn1s4ad
Merge in POTFILES changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2005 PrimeBase Technologies GmbH
 
1
/* Copyright (c) 2005 PrimeBase Technologies GmbH
2
2
 *
3
3
 * PrimeBase XT
4
4
 *
241
241
class XTTask;
242
242
 
243
243
/* Run a task. The thread input is the thread that is running the task. */
244
 
typedef xtBool (*XTDoTaskFunc)(XTTask *task_data, XTThread *thread);
245
 
typedef void (*XTFreeTaskFunc)(XTTask *task_data);
 
244
typedef xtBool (*XTDoTaskFunc)(struct XTTask *task_data, struct XTThread *thread);
 
245
typedef void (*XTFreeTaskFunc)(struct XTTask *task_data);
246
246
 
247
247
class XTTask {
248
248
        public: