mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
4f7e1ccf31
CORBAization.
18 lines
356 B
Plaintext
18 lines
356 B
Plaintext
#pragma inhibit push
|
|
#include <gnome-factory.idl>
|
|
#pragma inhibit pop
|
|
|
|
module GNOME {
|
|
exception POSIX_ERROR { string errorstr; };
|
|
|
|
interface FileManagerWindow {
|
|
/* not much yet */
|
|
oneway void close();
|
|
};
|
|
|
|
interface FileManagerFactory : GenericFactory {
|
|
FileManagerWindow create_window(in string dir)
|
|
raises (POSIX_ERROR);
|
|
};
|
|
};
|