~cyphermox/ethos/debian

« back to all changes in this revision

Viewing changes to bindings/mono/generated/Global.cs

  • Committer: Mathieu Trudel-Lapierre
  • Date: 2011-07-27 00:48:52 UTC
  • Revision ID: mathieu-tl@ubuntu.com-20110727004852-t7bz3ye3ugttb9aq
Clean tree to get to a merge-mode package tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// This file was generated by the Gtk# code generator.
2
 
// Any changes made will be lost if regenerated.
3
 
 
4
 
namespace Ethos {
5
 
 
6
 
        using System;
7
 
        using System.Runtime.InteropServices;
8
 
 
9
 
#region Autogenerated code
10
 
        public class Global {
11
 
 
12
 
                [DllImport("ethos-sharp.dll")]
13
 
                static extern int ethos_error_quark();
14
 
 
15
 
                public static int ErrorQuark() {
16
 
                        int raw_ret = ethos_error_quark();
17
 
                        int ret = raw_ret;
18
 
                        return ret;
19
 
                }
20
 
 
21
 
                [DllImport("ethos-sharp.dll")]
22
 
                static extern void ethos_register_plugin(IntPtr plugin);
23
 
 
24
 
                public static void RegisterPlugin(Ethos.Plugin plugin) {
25
 
                        ethos_register_plugin(plugin == null ? IntPtr.Zero : plugin.Handle);
26
 
                }
27
 
 
28
 
#endregion
29
 
        }
30
 
}