mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-26 09:21:06 +00:00
7f3171c814
is now tracking Gnome 2.6. svn path=/trunk/gtk-sharp/; revision=35479
16 lines
720 B
Plaintext
16 lines
720 B
Plaintext
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_file_chooser_dialog_new(string title, IntPtr parent, int action, IntPtr nil);
|
|
|
|
public FileChooserDialog (string title, Window parent, FileChooserAction action)
|
|
{
|
|
Raw = gtk_file_chooser_dialog_new (title, parent.Handle, (int)action, IntPtr.Zero);
|
|
}
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_file_chooser_dialog_new_with_backend(string title, IntPtr parent, int action, string backend, IntPtr nil);
|
|
|
|
public FileChooserDialog (string title, Window parent, FileChooserAction action, string backend)
|
|
{
|
|
Raw = gtk_file_chooser_dialog_new_with_backend (title, parent.Handle, (int)action, backend, IntPtr.Zero);
|
|
}
|