mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 04:05:28 +00:00
c0b574a686
* mapdllnames.pl : a little whitespace action * api/*-api.xml : move to win32 dllnames * */makefile.win32 : remove the mapdllnames step * */*.cs : move to win32 dllnames * */*.custom : move to win32 dllnames * sources/gtk-sharp.sources : move to win32 dllnames svn path=/trunk/gtk-sharp/; revision=11823
10 lines
452 B
Plaintext
10 lines
452 B
Plaintext
[DllImport ("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_message_dialog_new (IntPtr parent_window, DialogFlags flags, MessageType type, ButtonsType bt, string msg, params object [] args);
|
|
|
|
public MessageDialog (Gtk.Window parent_window, DialogFlags flags, MessageType type, ButtonsType bt, string msg)
|
|
{
|
|
IntPtr p = (parent_window != null) ? parent_window.Handle : ((IntPtr) 0);
|
|
|
|
Raw = gtk_message_dialog_new (p, flags, type, bt, msg, null);
|
|
}
|