mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-09 21:12:07 +03:00
13 lines
195 B
Plaintext
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);
|
|
};
|
|
};
|