/usr/include/thunderbird/nsIMimeHeaders.h is in thunderbird-dev 1:24.4.0+build1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-24.4.0+build1/mailnews/mime/public/nsIMimeHeaders.idl
*/
#ifndef __gen_nsIMimeHeaders_h__
#define __gen_nsIMimeHeaders_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsrootidl_h__
#include "nsrootidl.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
#define NS_IMIMEHEADERS_CONTRACTID \
"@mozilla.org/messenger/mimeheaders;1"
/* starting interface: nsIMimeHeaders */
#define NS_IMIMEHEADERS_IID_STR "877af00d-1ce8-446a-b4ce-b7cb1edd2791"
#define NS_IMIMEHEADERS_IID \
{0x877af00d, 0x1ce8, 0x446a, \
{ 0xb4, 0xce, 0xb7, 0xcb, 0x1e, 0xdd, 0x27, 0x91 }}
class NS_NO_VTABLE nsIMimeHeaders : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMIMEHEADERS_IID)
/* void initialize (in ACString allHeaders); */
NS_IMETHOD Initialize(const nsACString & allHeaders) = 0;
/* ACString extractHeader (in string headerName, in boolean getAllOfThem); */
NS_IMETHOD ExtractHeader(const char * headerName, bool getAllOfThem, nsACString & _retval) = 0;
/* readonly attribute ACString allHeaders; */
NS_IMETHOD GetAllHeaders(nsACString & aAllHeaders) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMimeHeaders, NS_IMIMEHEADERS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMIMEHEADERS \
NS_IMETHOD Initialize(const nsACString & allHeaders); \
NS_IMETHOD ExtractHeader(const char * headerName, bool getAllOfThem, nsACString & _retval); \
NS_IMETHOD GetAllHeaders(nsACString & aAllHeaders);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMIMEHEADERS(_to) \
NS_IMETHOD Initialize(const nsACString & allHeaders) { return _to Initialize(allHeaders); } \
NS_IMETHOD ExtractHeader(const char * headerName, bool getAllOfThem, nsACString & _retval) { return _to ExtractHeader(headerName, getAllOfThem, _retval); } \
NS_IMETHOD GetAllHeaders(nsACString & aAllHeaders) { return _to GetAllHeaders(aAllHeaders); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMIMEHEADERS(_to) \
NS_IMETHOD Initialize(const nsACString & allHeaders) { return !_to ? NS_ERROR_NULL_POINTER : _to->Initialize(allHeaders); } \
NS_IMETHOD ExtractHeader(const char * headerName, bool getAllOfThem, nsACString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ExtractHeader(headerName, getAllOfThem, _retval); } \
NS_IMETHOD GetAllHeaders(nsACString & aAllHeaders) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllHeaders(aAllHeaders); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMimeHeaders : public nsIMimeHeaders
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMIMEHEADERS
nsMimeHeaders();
private:
~nsMimeHeaders();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsMimeHeaders, nsIMimeHeaders)
nsMimeHeaders::nsMimeHeaders()
{
/* member initializers and constructor code */
}
nsMimeHeaders::~nsMimeHeaders()
{
/* destructor code */
}
/* void initialize (in ACString allHeaders); */
NS_IMETHODIMP nsMimeHeaders::Initialize(const nsACString & allHeaders)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* ACString extractHeader (in string headerName, in boolean getAllOfThem); */
NS_IMETHODIMP nsMimeHeaders::ExtractHeader(const char * headerName, bool getAllOfThem, nsACString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString allHeaders; */
NS_IMETHODIMP nsMimeHeaders::GetAllHeaders(nsACString & aAllHeaders)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIMimeHeaders_h__ */
|