summaryrefslogtreecommitdiffstats
path: root/mono/DBus.cs
blob: 1032792aa0760c6a245f36d0b045457bf6674ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace DBus {

  using System;
  
  public class Exception : ApplicationException {
    internal Exception (ref Error error)
      : base (Runtime.InteropServices.Marshal.PtrToStringAnsi (error.message)) { }
  }
  
  public class Internals {
    public const string Libname = "libdbus-1.so.0";
  }
}