comments are allowed, so removing the cruft to prevent warnings

git-svn-id: svn://10.0.0.236/trunk@58725 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sspitzer%netscape.com
2000-01-26 04:08:26 +00:00
parent ec50403f3b
commit 2119470803

View File

@@ -38,8 +38,6 @@ interface nsIMsgFolder;
[scriptable, uuid(F11009C1-F697-11d2-807F-006008128C4E)]
interface nsIMsgMessageService : nsISupports {
%{ C++
/////////////////////////////////////////////////////////////////
// If you want a handle on the running task, pass in a valid nsIURI
@@ -58,8 +56,6 @@ interface nsIMsgMessageService : nsISupports {
// PR_FALSE leaves it as just a copy.
///////////////////////////////////////////////////////////////
%}
void CopyMessage(in string aSrcURI, in nsIStreamListener aCopyListener, in boolean aMoveMessage,
in nsIUrlListener aUrlListener, out nsIURI aURL);
@@ -67,8 +63,6 @@ interface nsIMsgMessageService : nsISupports {
[noscript] void CopyMessages(in nsMsgKeyArrayPtr keys, in nsIMsgFolder srcFolder, in nsIStreamListener aCopyListener, in boolean aMoveMessage,
in nsIUrlListener aUrlListener, out nsIURI aURL);
%{ C++
/////////////////////////////////////////////////////////////////////
// DisplayMessage: When you want a message displayed....
// aMessageURI is a uri representing the message to display.
@@ -77,14 +71,12 @@ interface nsIMsgMessageService : nsISupports {
// It would be nice if we can figure this out for ourselves in the
// protocol but we can't do that right now.
///////////////////////////////////////////////////////////////////
%}
void DisplayMessage(in string aMessageURI, in nsISupports aDisplayConsumer,
in nsIMsgWindow aMsgWindow,
in nsIUrlListener aUrlListener,
out nsIURI aURL);
%{ C++
/////////////////////////////////////////////////////////////////////
// SaveMessageToDisk: When you want to spool a message out to a file
// on disk. This is an asynch operation of course. You must pass in a
@@ -94,7 +86,7 @@ interface nsIMsgMessageService : nsISupports {
// aGenerateDummyEnvelope --> usually FALSE. Set to TRUE if you want the msg
// appended at the end of the file.
///////////////////////////////////////////////////////////////////
%}
void SaveMessageToDisk(in string aMessageURI, in nsIFileSpec aFile,
in boolean aGenerateDummyEnvelope,
in nsIUrlListener aUrlListener, out nsIURI aURL,
@@ -104,6 +96,7 @@ interface nsIMsgMessageService : nsISupports {
// GetUrlForUri: when you have a uri and you would like to convert that
// to a url which can be run through necko, you can use this method.
// the Uri MUST refer to a message and not a folder!
/////////////////////////////////////////////////////////////////////
void GetUrlForUri(in string aMessageURI, out nsIURI aURL);
};