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.
@@ -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,27 +25,20 @@
25
25
  #ifndef FIRERUBY_FIRE_RUBY_EXCEPTION_H
26
26
  #define FIRERUBY_FIRE_RUBY_EXCEPTION_H
27
27
 
28
- /* Includes. */
28
+ /* Includes. */
29
29
  #ifndef RUBY_H_INCLUDED
30
30
  #include "ruby.h"
31
31
  #define RUBY_H_INCLUDED
32
32
  #endif
33
-
33
+
34
34
  #ifndef IBASE_H_INCLUDED
35
35
  #include "ibase.h"
36
36
  #define IBASE_H_INCLUDED
37
37
  #endif
38
-
39
- /* Type definitions. */
40
- typedef struct
41
- {
42
- long when;
43
- } ExceptionHandle;
44
-
45
- /* Function prototypes. */
46
- void Init_FireRubyException(VALUE);
47
- VALUE rb_fireruby_exception_new(const char *);
48
- void rb_fireruby_raise(ISC_STATUS *, const char *);
49
- void firerubyExceptionFree(void *);
50
-
38
+
39
+ /* Function prototypes. */
40
+ void Init_FireRubyException(VALUE);
41
+ VALUE rb_fireruby_exception_new(const char *);
42
+ void rb_fireruby_raise(const ISC_STATUS *, const char *);
43
+
51
44
  #endif /* FIRERUBY_FIRE_RUBY_EXCEPTION_H */