Ryujinx-GtkSharp/gnome/Modules.cs
Mike Kestner 9bc8928f88 2004-04-29 Mike Kestner <mkestner@ximian.com>
* configure.in : expand the new config files.
	* */*config.in : the per-assembly config files.
	* */Makefile.am : dist, clean, and install the configs.
	* gnome/*.c* : fix some errant DllImports.

svn path=/trunk/gtk-sharp/; revision=26301
2004-04-29 15:00:24 +00:00

27 lines
502 B
C#

namespace Gnome
{
using System;
using System.Runtime.InteropServices;
public class Modules
{
[DllImport("gnome-2")]
static extern System.IntPtr libgnome_module_info_get ();
[DllImport("gnomeui-2")]
static extern System.IntPtr libgnomeui_module_info_get ();
public static ModuleInfo LibGnome {
get {
return ModuleInfo.New (libgnome_module_info_get ());
}
}
public static ModuleInfo UI {
get {
return ModuleInfo.New (libgnomeui_module_info_get ());
}
}
}
}