/usr/include/thunderbird/nsIASN1Object.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIASN1Object.idl
*/
#ifndef __gen_nsIASN1Object_h__
#define __gen_nsIASN1Object_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: nsIASN1Object */
#define NS_IASN1OBJECT_IID_STR "ba8bf582-1dd1-11b2-898c-f40246bc9a63"
#define NS_IASN1OBJECT_IID \
{0xba8bf582, 0x1dd1, 0x11b2, \
{ 0x89, 0x8c, 0xf4, 0x02, 0x46, 0xbc, 0x9a, 0x63 }}
class NS_NO_VTABLE nsIASN1Object : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASN1OBJECT_IID)
enum {
ASN1_END_CONTENTS = 0U,
ASN1_BOOLEAN = 1U,
ASN1_INTEGER = 2U,
ASN1_BIT_STRING = 3U,
ASN1_OCTET_STRING = 4U,
ASN1_NULL = 5U,
ASN1_OBJECT_ID = 6U,
ASN1_ENUMERATED = 10U,
ASN1_UTF8_STRING = 12U,
ASN1_SEQUENCE = 16U,
ASN1_SET = 17U,
ASN1_PRINTABLE_STRING = 19U,
ASN1_T61_STRING = 20U,
ASN1_IA5_STRING = 22U,
ASN1_UTC_TIME = 23U,
ASN1_GEN_TIME = 24U,
ASN1_VISIBLE_STRING = 26U,
ASN1_UNIVERSAL_STRING = 28U,
ASN1_BMP_STRING = 30U,
ASN1_HIGH_TAG_NUMBER = 31U,
ASN1_CONTEXT_SPECIFIC = 32U,
ASN1_APPLICATION = 33U,
ASN1_PRIVATE = 34U
};
/* attribute unsigned long type; */
NS_IMETHOD GetType(uint32_t *aType) = 0;
NS_IMETHOD SetType(uint32_t aType) = 0;
/* attribute unsigned long tag; */
NS_IMETHOD GetTag(uint32_t *aTag) = 0;
NS_IMETHOD SetTag(uint32_t aTag) = 0;
/* attribute AString displayName; */
NS_IMETHOD GetDisplayName(nsAString & aDisplayName) = 0;
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) = 0;
/* attribute AString displayValue; */
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) = 0;
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIASN1Object, NS_IASN1OBJECT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASN1OBJECT \
NS_IMETHOD GetType(uint32_t *aType) override; \
NS_IMETHOD SetType(uint32_t aType) override; \
NS_IMETHOD GetTag(uint32_t *aTag) override; \
NS_IMETHOD SetTag(uint32_t aTag) override; \
NS_IMETHOD GetDisplayName(nsAString & aDisplayName) override; \
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) override; \
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) override; \
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIASN1OBJECT \
NS_METHOD GetType(uint32_t *aType); \
NS_METHOD SetType(uint32_t aType); \
NS_METHOD GetTag(uint32_t *aTag); \
NS_METHOD SetTag(uint32_t aTag); \
NS_METHOD GetDisplayName(nsAString & aDisplayName); \
NS_METHOD SetDisplayName(const nsAString & aDisplayName); \
NS_METHOD GetDisplayValue(nsAString & aDisplayValue); \
NS_METHOD SetDisplayValue(const nsAString & aDisplayValue);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASN1OBJECT(_to) \
NS_IMETHOD GetType(uint32_t *aType) override { return _to GetType(aType); } \
NS_IMETHOD SetType(uint32_t aType) override { return _to SetType(aType); } \
NS_IMETHOD GetTag(uint32_t *aTag) override { return _to GetTag(aTag); } \
NS_IMETHOD SetTag(uint32_t aTag) override { return _to SetTag(aTag); } \
NS_IMETHOD GetDisplayName(nsAString & aDisplayName) override { return _to GetDisplayName(aDisplayName); } \
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) override { return _to SetDisplayName(aDisplayName); } \
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) override { return _to GetDisplayValue(aDisplayValue); } \
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) override { return _to SetDisplayValue(aDisplayValue); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASN1OBJECT(_to) \
NS_IMETHOD GetType(uint32_t *aType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_IMETHOD SetType(uint32_t aType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } \
NS_IMETHOD GetTag(uint32_t *aTag) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTag(aTag); } \
NS_IMETHOD SetTag(uint32_t aTag) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTag(aTag); } \
NS_IMETHOD GetDisplayName(nsAString & aDisplayName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayName(aDisplayName); } \
NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisplayName(aDisplayName); } \
NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayValue(aDisplayValue); } \
NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisplayValue(aDisplayValue); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsASN1Object : public nsIASN1Object
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIASN1OBJECT
nsASN1Object();
private:
~nsASN1Object();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsASN1Object, nsIASN1Object)
nsASN1Object::nsASN1Object()
{
/* member initializers and constructor code */
}
nsASN1Object::~nsASN1Object()
{
/* destructor code */
}
/* attribute unsigned long type; */
NS_IMETHODIMP nsASN1Object::GetType(uint32_t *aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetType(uint32_t aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long tag; */
NS_IMETHODIMP nsASN1Object::GetTag(uint32_t *aTag)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetTag(uint32_t aTag)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute AString displayName; */
NS_IMETHODIMP nsASN1Object::GetDisplayName(nsAString & aDisplayName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetDisplayName(const nsAString & aDisplayName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute AString displayValue; */
NS_IMETHODIMP nsASN1Object::GetDisplayValue(nsAString & aDisplayValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetDisplayValue(const nsAString & aDisplayValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIASN1Object_h__ */
|