/usr/include/thunderbird/nsIASN1Tree.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIASN1Tree.idl
*/
#ifndef __gen_nsIASN1Tree_h__
#define __gen_nsIASN1Tree_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsITreeView_h__
#include "nsITreeView.h"
#endif
#ifndef __gen_nsIX509Cert_h__
#include "nsIX509Cert.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: nsIASN1Tree */
#define NS_IASN1TREE_IID_STR "de142307-7b88-4e0a-b232-250f310e25d8"
#define NS_IASN1TREE_IID \
{0xde142307, 0x7b88, 0x4e0a, \
{ 0xb2, 0x32, 0x25, 0x0f, 0x31, 0x0e, 0x25, 0xd8 }}
class NS_NO_VTABLE nsIASN1Tree : public nsITreeView {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASN1TREE_IID)
/* void loadASN1Structure (in nsIASN1Object asn1Object); */
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object) = 0;
/* AString getDisplayData (in unsigned long index); */
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIASN1Tree, NS_IASN1TREE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASN1TREE \
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object) override; \
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval) 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_NSIASN1TREE \
NS_METHOD LoadASN1Structure(nsIASN1Object *asn1Object); \
NS_METHOD GetDisplayData(uint32_t index, nsAString & _retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASN1TREE(_to) \
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object) override { return _to LoadASN1Structure(asn1Object); } \
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval) override { return _to GetDisplayData(index, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASN1TREE(_to) \
NS_IMETHOD LoadASN1Structure(nsIASN1Object *asn1Object) override { return !_to ? NS_ERROR_NULL_POINTER : _to->LoadASN1Structure(asn1Object); } \
NS_IMETHOD GetDisplayData(uint32_t index, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisplayData(index, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsASN1Tree : public nsIASN1Tree
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIASN1TREE
nsASN1Tree();
private:
~nsASN1Tree();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsASN1Tree, nsIASN1Tree)
nsASN1Tree::nsASN1Tree()
{
/* member initializers and constructor code */
}
nsASN1Tree::~nsASN1Tree()
{
/* destructor code */
}
/* void loadASN1Structure (in nsIASN1Object asn1Object); */
NS_IMETHODIMP nsASN1Tree::LoadASN1Structure(nsIASN1Object *asn1Object)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getDisplayData (in unsigned long index); */
NS_IMETHODIMP nsASN1Tree::GetDisplayData(uint32_t index, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#define NS_ASN1TREE_CONTRACTID "@mozilla.org/security/nsASN1Tree;1"
#endif /* __gen_nsIASN1Tree_h__ */
|