diff options
Diffstat (limited to 'mailnews/compose/src/nsMsgAttachmentHandler.h')
-rw-r--r-- | mailnews/compose/src/nsMsgAttachmentHandler.h | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/mailnews/compose/src/nsMsgAttachmentHandler.h b/mailnews/compose/src/nsMsgAttachmentHandler.h index 2034cba032..67ac474abd 100644 --- a/mailnews/compose/src/nsMsgAttachmentHandler.h +++ b/mailnews/compose/src/nsMsgAttachmentHandler.h @@ -16,42 +16,6 @@ #include "nsAutoPtr.h" #include "nsIMsgAttachmentHandler.h" -#ifdef XP_MACOSX - -#include "nsMsgAppleDouble.h" -#include "nsILocalFileMac.h" - -class AppleDoubleEncodeObject -{ -public: - appledouble_encode_object ap_encode_obj; - char *buff; // the working buff - int32_t s_buff; // the working buff size - nsCOMPtr <nsIOutputStream> fileStream; // file to hold the encoding -}; - -class nsILocalFileMac; -class nsIZipWriter; - -/* Simple utility class that will synchronously zip any file - (or folder hierarchy) you give it. */ -class nsSimpleZipper -{ - public: - - // Synchronously zips the input file/folder and writes all - // data to the output file. - static nsresult Zip(nsIFile *aInputFile, nsIFile *aOutputFile); - - private: - - // Recursively adds the file or folder to aZipWriter. - static nsresult AddToZip(nsIZipWriter *aZipWriter, - nsIFile *aFile, - const nsACString &aPath); -}; -#endif // XP_MACOSX - namespace mozilla { namespace mailnews { class MimeEncoder; @@ -95,14 +59,6 @@ private: bool UseUUEncode_p(void); void AnalyzeDataChunk (const char *chunk, int32_t chunkSize); nsresult LoadDataFromFile(nsIFile *file, nsString &sigData, bool charsetConversion); //A similar function already exist in nsMsgCompose! -#ifdef XP_MACOSX - nsresult ConvertToAppleEncoding(const nsCString &aFileSpecURI, - const nsCString &aFilePath, - nsILocalFileMac *aSourceFile); - // zips this attachment and does the work to make this attachment handler handle it properly. - nsresult ConvertToZipFile(nsILocalFileMac *aSourceFile); - bool HasResourceFork(FSRef *fsRef); -#endif // public: @@ -113,12 +69,6 @@ public: nsMsgCompFields *mCompFields; // Message composition fields for the sender bool m_bogus_attachment; // This is to catch problem children... -#ifdef XP_MACOSX - // if we need to encode this file into for example an appledouble, or zip file, - // this file is our working file. currently only needed on mac. - nsCOMPtr<nsIFile> mEncodedWorkingFile; -#endif - nsCString m_xMacType; // Mac file type nsCString m_xMacCreator; // Mac file creator |