* GNOME_Evolution_WombatLDAP.server.in.in: Add InterfaceCheck object. * GNOME_Evolution_WombatNOLDAP.server.in.in: Likewise. * wombat-interface-check.c: New, from evolution-1-2-branch. * wombat-interface-check.h: Likewise. * wombat.c (setup_pas): Removed argc/argv args. (setup_pcs): Likewise. (setup_interface_check): New interface to set up the InterfaceCheck object. (main): Call the latter. svn path=/trunk/; revision=20563
25 lines
400 B
Plaintext
25 lines
400 B
Plaintext
/*
|
|
* 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;
|
|
};
|
|
};
|
|
};
|