~gearman-developers/gearman-interface/gearman-interface

« back to all changes in this revision

Viewing changes to php/libdrizzle.i

  • Committer: Monty Taylor
  • Date: 2009-07-21 20:41:39 UTC
  • Revision ID: mordred@inaugust.com-20090721204139-rcyse999id1lbu1h
Python worker initial import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  ndb-bindings: Bindings for the NDB API
 
5
 *  Copyright (C) 2008 MySQL
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU General Public License as published by
 
9
 *  the Free Software Foundation; either version 2 of the License, or
 
10
 *  (at your option) any later version.
 
11
 *
 
12
 *  This program is distributed in the hope that it will be useful,
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *  GNU General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU General Public License
 
18
 *  along with this program; if not, write to the Free Software
 
19
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
20
 */
 
21
 
 
22
%module libdrizzle
 
23
 
 
24
%include "interface/globals.i"
 
25
 
 
26
%include "interface/libdrizzle/drizzle.i"
 
27
%include "interface/libdrizzle/con.i"
 
28
%include "interface/libdrizzle/client.i"
 
29
%include "interface/libdrizzle/server.i"
 
30
%include "interface/libdrizzle/query.i"
 
31
%include "interface/libdrizzle/result.i"
 
32
%include "interface/libdrizzle/result_client.i"
 
33
%include "interface/libdrizzle/result_client_buffered.i"
 
34
%include "interface/libdrizzle/result_client_unbuffered.i"
 
35
%include "interface/libdrizzle/result_server.i"
 
36
%include "interface/libdrizzle/column.i"
 
37
%include "interface/libdrizzle/column_server.i"
 
38
 
 
39
 
 
40
 
 
41
%{
 
42
 
 
43
#define D_exception(code,msg) do { SWIG_fail; } while(0);
 
44
#define D_exception_err(code,err) do { SWIG_fail; } while(0);
 
45
 
 
46
%}