blob: ec951c5f1e279d8a677e62e4a12ab4198184a1aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Wombat interfaces.
*
* Copyright (C) 2000, 2001, 2002, Ximian, Inc.
*/
#include <Bonobo.idl>
module GNOME {
module Evolution {
interface WombatClient {
string getPassword (in string prompt, in string key);
void forgetPassword (in string key);
};
interface Config {
};
interface WombatInterfaceCheck : Bonobo::Unknown {
readonly attribute string interfaceVersion;
};
};
};
|