rubyfb 0.5.5 → 0.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/ext/Transaction.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,7 +25,7 @@
25
25
  #ifndef FIRERUBY_TRANSACTION_H
26
26
  #define FIRERUBY_TRANSACTION_H
27
27
 
28
- /* Includes. */
28
+ /* Includes. */
29
29
  #ifndef FIRERUBY_FIRE_RUBY_H
30
30
  #include "FireRuby.h"
31
31
  #endif
@@ -34,17 +34,16 @@
34
34
  #include "FireRubyException.h"
35
35
  #endif
36
36
 
37
- /* Structure definitions. */
38
- typedef struct
39
- {
40
- isc_tr_handle handle;
41
- } TransactionHandle;
42
-
43
- /* Function prototypes. */
44
- void Init_Transaction(VALUE);
45
- VALUE rb_transaction_new(VALUE);
46
- int coversConnection(VALUE, VALUE);
47
- void transactionFree(void *);
37
+ /* Structure definitions. */
38
+ typedef struct {
39
+ isc_tr_handle handle;
40
+ } TransactionHandle;
41
+
42
+ /* Function prototypes. */
43
+ void Init_Transaction(VALUE);
44
+ VALUE rb_transaction_new(VALUE);
45
+ int coversConnection(VALUE, VALUE);
46
+ void transactionFree(void *);
48
47
 
49
48
  #endif /* FIRERUBY_TRANSACTION_H */
50
49