rubyfb 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
data/ext/Statement.h CHANGED
@@ -3,20 +3,20 @@
3
3
  *----------------------------------------------------------------------------*/
4
4
  /**
5
5
  * Copyright � Peter Wood, 2005
6
- *
6
+ *
7
7
  * The contents of this file are subject to the Mozilla Public License Version
8
8
  * 1.1 (the "License"); you may not use this file except in compliance with the
9
- * License. You may obtain a copy of the License at
9
+ * License. You may obtain a copy of the License at
10
10
  *
11
11
  * http://www.mozilla.org/MPL/
12
- *
12
+ *
13
13
  * Software distributed under the License is distributed on an "AS IS" basis,
14
14
  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
15
15
  * the specificlanguage governing rights and limitations under the License.
16
- *
16
+ *
17
17
  * The Original Code is the FireRuby extension for the Ruby language.
18
- *
19
- * The Initial Developer of the Original Code is Peter Wood. All Rights
18
+ *
19
+ * The Initial Developer of the Original Code is Peter Wood. All Rights
20
20
  * Reserved.
21
21
  *
22
22
  * @author Peter Wood
@@ -25,38 +25,37 @@
25
25
  #ifndef FIRERUBY_STATEMENT_H
26
26
  #define FIRERUBY_STATEMENT_H
27
27
 
28
- /* Includes. */
28
+ /* Includes. */
29
29
  #ifndef IBASE_H_INCLUDED
30
30
  #include "ibase.h"
31
31
  #define IBASE_H_INCLUDED
32
32
  #endif
33
-
33
+
34
34
  #ifndef RUBY_H_INCLUDED
35
35
  #include "ruby.h"
36
36
  #define RUBY_H_INCLUDED
37
37
  #endif
38
-
39
- /* Type definitions. */
40
- typedef struct
41
- {
42
- isc_stmt_handle handle;
43
- int type,
44
- inputs;
45
- short dialect;
46
- XSQLDA *parameters;
47
- } StatementHandle;
48
-
49
- /* Function prototypes. */
50
- void prepare(isc_db_handle *, isc_tr_handle *, char *, isc_stmt_handle *,
51
- short, int *, int *, int *);
52
- void execute(isc_tr_handle *, isc_stmt_handle *, short, XSQLDA *,
53
- int, long *);
54
- VALUE rb_statement_new(VALUE, VALUE, VALUE, VALUE);
55
- VALUE rb_execute_statement(VALUE);
56
- VALUE rb_execute_statement_for(VALUE, VALUE);
57
- VALUE rb_get_statement_type(VALUE);
58
- void rb_statement_close(VALUE);
59
- void statementFree(void *);
60
- void Init_Statement(VALUE);
38
+
39
+ /* Type definitions. */
40
+ typedef struct {
41
+ isc_stmt_handle handle;
42
+ int type,
43
+ inputs;
44
+ short dialect;
45
+ XSQLDA *parameters;
46
+ } StatementHandle;
47
+
48
+ /* Function prototypes. */
49
+ void prepare(isc_db_handle *, isc_tr_handle *, char *, isc_stmt_handle *,
50
+ short, int *, int *, int *);
51
+ void execute(isc_tr_handle *, isc_stmt_handle *, short, XSQLDA *,
52
+ int, long *);
53
+ VALUE rb_statement_new(VALUE, VALUE, VALUE, VALUE);
54
+ VALUE rb_execute_statement(VALUE);
55
+ VALUE rb_execute_statement_for(VALUE, VALUE);
56
+ VALUE rb_get_statement_type(VALUE);
57
+ void rb_statement_close(VALUE);
58
+ void statementFree(void *);
59
+ void Init_Statement(VALUE);
61
60
 
62
61
  #endif /* FIRERUBY_STATEMENT_H */