mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-20 09:18:07 +02:00
13 lines
303 B
C#
13 lines
303 B
C#
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";
|
|
}
|
|
}
|