mc/idl/FileManager.idl
1998-12-04 21:32:19 +00:00

13 lines
195 B
Plaintext

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