add new interface to nsIMsgCompose

This commit is contained in:
ducarroz%netscape.com 1999-03-11 01:30:18 +00:00
Родитель 1ba46ab31b
Коммит 74ddade0bd
2 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -33,9 +33,8 @@ class nsIMsgCompose : public nsISupports {
return iid;
}
#if 0
/* void CreateAndInit (in long a_context, in long old_context, in long prefs, in nsIMsgCompFields initfields, in long master); */
NS_IMETHOD CreateAndInit(PRInt32 a_context, PRInt32 old_context, PRInt32 prefs, nsIMsgCompFields *initfields, PRInt32 master) = 0;
/* void CreateAndInitialize (in long a_context, in long old_context, in long prefs, in nsIMsgCompFields initfields, in long master); */
NS_IMETHOD CreateAndInitialize(PRInt32 a_context, PRInt32 old_context, PRInt32 prefs, nsIMsgCompFields *initfields, PRInt32 master) = 0;
/* void Create (in long a_context, in long prefs, in long master); */
NS_IMETHOD Create(PRInt32 a_context, PRInt32 prefs, PRInt32 master) = 0;
@ -45,7 +44,6 @@ class nsIMsgCompose : public nsISupports {
/* void Dispose (); */
NS_IMETHOD Dispose() = 0;
#endif
#ifdef XPIDL_JS_STUBS
static NS_EXPORT_(JSObject *) InitJSClass(JSContext *cx);

Просмотреть файл

@ -23,7 +23,7 @@
[object, uuid(4E606270-B588-11D2-8289-00805F2A0107)]
interface nsIMsgCompose : nsISupports {
void CreateAndInit(in long a_context, in long old_context, in long prefs, in nsIMsgCompFields initfields, in long master);
void CreateAndInitialize(in long a_context, in long old_context, in long prefs, in nsIMsgCompFields initfields, in long master);
void Create(in long a_context, in long prefs, in long master);
void Initialize(in long old_context, in nsIMsgCompFields initfields);
void Dispose();