summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/import/src/MapiMimeTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'comm/mailnews/import/src/MapiMimeTypes.h')
-rw-r--r--comm/mailnews/import/src/MapiMimeTypes.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/comm/mailnews/import/src/MapiMimeTypes.h b/comm/mailnews/import/src/MapiMimeTypes.h
new file mode 100644
index 0000000000..d870893559
--- /dev/null
+++ b/comm/mailnews/import/src/MapiMimeTypes.h
@@ -0,0 +1,27 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifndef MapiMimeTypes_h___
+#define MapiMimeTypes_h___
+
+#include <windows.h>
+
+#define kMaxMimeTypeSize 256
+
+class CMimeTypes {
+ public:
+ static uint8_t* GetMimeType(const nsString& theExt);
+
+ protected:
+ // Registry stuff
+ static BOOL GetKey(HKEY root, LPCWSTR pName, PHKEY pKey);
+ static BOOL GetValueBytes(HKEY rootKey, LPCWSTR pValName, LPBYTE* ppBytes);
+ static void ReleaseValueBytes(LPBYTE pBytes);
+ static BOOL GetMimeTypeFromReg(const nsString& ext, LPBYTE* ppBytes);
+
+ static uint8_t m_mimeBuffer[kMaxMimeTypeSize];
+};
+
+#endif /* MapiMimeTypes_h__ */