/usr/include/thunderbird/nsIMsgSMIMECompFields.h is in thunderbird-dev 1:38.6.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMsgSMIMECompFields.idl
*/
#ifndef __gen_nsIMsgSMIMECompFields_h__
#define __gen_nsIMsgSMIMECompFields_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIMsgSMIMECompFields */
#define NS_IMSGSMIMECOMPFIELDS_IID_STR "338e91f9-5970-4f81-b771-0822a32b1161"
#define NS_IMSGSMIMECOMPFIELDS_IID \
{0x338e91f9, 0x5970, 0x4f81, \
{ 0xb7, 0x71, 0x08, 0x22, 0xa3, 0x2b, 0x11, 0x61 }}
class NS_NO_VTABLE nsIMsgSMIMECompFields : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGSMIMECOMPFIELDS_IID)
/* attribute boolean signMessage; */
NS_IMETHOD GetSignMessage(bool *aSignMessage) = 0;
NS_IMETHOD SetSignMessage(bool aSignMessage) = 0;
/* attribute boolean requireEncryptMessage; */
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) = 0;
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgSMIMECompFields, NS_IMSGSMIMECOMPFIELDS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGSMIMECOMPFIELDS \
NS_IMETHOD GetSignMessage(bool *aSignMessage) override; \
NS_IMETHOD SetSignMessage(bool aSignMessage) override; \
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) override; \
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGSMIMECOMPFIELDS(_to) \
NS_IMETHOD GetSignMessage(bool *aSignMessage) override { return _to GetSignMessage(aSignMessage); } \
NS_IMETHOD SetSignMessage(bool aSignMessage) override { return _to SetSignMessage(aSignMessage); } \
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) override { return _to GetRequireEncryptMessage(aRequireEncryptMessage); } \
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) override { return _to SetRequireEncryptMessage(aRequireEncryptMessage); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGSMIMECOMPFIELDS(_to) \
NS_IMETHOD GetSignMessage(bool *aSignMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSignMessage(aSignMessage); } \
NS_IMETHOD SetSignMessage(bool aSignMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSignMessage(aSignMessage); } \
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRequireEncryptMessage(aRequireEncryptMessage); } \
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRequireEncryptMessage(aRequireEncryptMessage); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMsgSMIMECompFields : public nsIMsgSMIMECompFields
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMSGSMIMECOMPFIELDS
nsMsgSMIMECompFields();
private:
~nsMsgSMIMECompFields();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMsgSMIMECompFields, nsIMsgSMIMECompFields)
nsMsgSMIMECompFields::nsMsgSMIMECompFields()
{
/* member initializers and constructor code */
}
nsMsgSMIMECompFields::~nsMsgSMIMECompFields()
{
/* destructor code */
}
/* attribute boolean signMessage; */
NS_IMETHODIMP nsMsgSMIMECompFields::GetSignMessage(bool *aSignMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgSMIMECompFields::SetSignMessage(bool aSignMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean requireEncryptMessage; */
NS_IMETHODIMP nsMsgSMIMECompFields::GetRequireEncryptMessage(bool *aRequireEncryptMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgSMIMECompFields::SetRequireEncryptMessage(bool aRequireEncryptMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIMsgSMIMECompFields_h__ */
|