/usr/include/firefox/nsIASN1Object.h is in firefox-dev 11.0+build1-0ubuntu4.
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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/firefox-11.0+build1/build-tree/mozilla/security/manager/ssl/public/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 NS_SCRIPTABLE 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_SCRIPTABLE NS_IMETHOD GetType(PRUint32 *aType) = 0;
NS_SCRIPTABLE NS_IMETHOD SetType(PRUint32 aType) = 0;
/* attribute unsigned long tag; */
NS_SCRIPTABLE NS_IMETHOD GetTag(PRUint32 *aTag) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTag(PRUint32 aTag) = 0;
/* attribute AString displayName; */
NS_SCRIPTABLE NS_IMETHOD GetDisplayName(nsAString & aDisplayName) = 0;
NS_SCRIPTABLE NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) = 0;
/* attribute AString displayValue; */
NS_SCRIPTABLE NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) = 0;
NS_SCRIPTABLE 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_SCRIPTABLE NS_IMETHOD GetType(PRUint32 *aType); \
NS_SCRIPTABLE NS_IMETHOD SetType(PRUint32 aType); \
NS_SCRIPTABLE NS_IMETHOD GetTag(PRUint32 *aTag); \
NS_SCRIPTABLE NS_IMETHOD SetTag(PRUint32 aTag); \
NS_SCRIPTABLE NS_IMETHOD GetDisplayName(nsAString & aDisplayName); \
NS_SCRIPTABLE NS_IMETHOD SetDisplayName(const nsAString & aDisplayName); \
NS_SCRIPTABLE NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue); \
NS_SCRIPTABLE NS_IMETHOD 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_SCRIPTABLE NS_IMETHOD GetType(PRUint32 *aType) { return _to GetType(aType); } \
NS_SCRIPTABLE NS_IMETHOD SetType(PRUint32 aType) { return _to SetType(aType); } \
NS_SCRIPTABLE NS_IMETHOD GetTag(PRUint32 *aTag) { return _to GetTag(aTag); } \
NS_SCRIPTABLE NS_IMETHOD SetTag(PRUint32 aTag) { return _to SetTag(aTag); } \
NS_SCRIPTABLE NS_IMETHOD GetDisplayName(nsAString & aDisplayName) { return _to GetDisplayName(aDisplayName); } \
NS_SCRIPTABLE NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) { return _to SetDisplayName(aDisplayName); } \
NS_SCRIPTABLE NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) { return _to GetDisplayValue(aDisplayValue); } \
NS_SCRIPTABLE NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) { 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_SCRIPTABLE NS_IMETHOD GetType(PRUint32 *aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_SCRIPTABLE NS_IMETHOD SetType(PRUint32 aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } \
NS_SCRIPTABLE NS_IMETHOD GetTag(PRUint32 *aTag) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTag(aTag); } \
NS_SCRIPTABLE NS_IMETHOD SetTag(PRUint32 aTag) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTag(aTag); } \
NS_SCRIPTABLE NS_IMETHOD GetDisplayName(nsAString & aDisplayName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayName(aDisplayName); } \
NS_SCRIPTABLE NS_IMETHOD SetDisplayName(const nsAString & aDisplayName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisplayName(aDisplayName); } \
NS_SCRIPTABLE NS_IMETHOD GetDisplayValue(nsAString & aDisplayValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayValue(aDisplayValue); } \
NS_SCRIPTABLE NS_IMETHOD SetDisplayValue(const nsAString & aDisplayValue) { 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_ISUPPORTS1(nsASN1Object, nsIASN1Object)
nsASN1Object::nsASN1Object()
{
/* member initializers and constructor code */
}
nsASN1Object::~nsASN1Object()
{
/* destructor code */
}
/* attribute unsigned long type; */
NS_IMETHODIMP nsASN1Object::GetType(PRUint32 *aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetType(PRUint32 aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long tag; */
NS_IMETHODIMP nsASN1Object::GetTag(PRUint32 *aTag)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsASN1Object::SetTag(PRUint32 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__ */
|