1
1
mc/idl/FileManager.idl
Miguel de Icaza 414df0f7b7 1998-12-02 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gscreen.c (panel_tree_drag_data_received): Perform drag and drop
	operations on the Tree.
1998-12-03 16:10:25 +00:00

15 строки
201 B
Plaintext

#include <factory.idl>
module GNOME {
interface FileManagerFactory : Factory {
};
exception POSIX_ERROR {};
interface FileManager {
void chdir (in string dir)
raises (POSIX_ERROR);
};
};