/usr/include/thunderbird/calIErrors.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/calIErrors.idl
*/
#ifndef __gen_calIErrors_h__
#define __gen_calIErrors_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: calIErrors */
#define CALIERRORS_IID_STR "404c7d78-bec7-474c-aa2a-82c0d0563bb6"
#define CALIERRORS_IID \
{0x404c7d78, 0xbec7, 0x474c, \
{ 0xaa, 0x2a, 0x82, 0xc0, 0xd0, 0x56, 0x3b, 0xb6 }}
class NS_NO_VTABLE calIErrors : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(CALIERRORS_IID)
enum {
CAL_ERROR_MODULE_CALENDAR = 5U,
CAL_ERROR_MODULE_BASE_OFFSET = 69U,
ERROR_BASE = 2152333312U,
INVALID_TIMEZONE = 2152333313U,
CAL_IS_READONLY = 2152333314U,
CAL_UTF8_DECODING_FAILED = 2152333315U,
DUPLICATE_ID = 2152333316U,
OPERATION_CANCELLED = 2152333317U,
PROVIDER_CREATION_FAILED = 2152333318U,
STORAGE_UNKNOWN_SCHEMA_ERROR = 2152333319U,
STORAGE_UNKNOWN_TIMEZONES_ERROR = 2152333320U,
READ_FAILED = 2152333321U,
MODIFICATION_FAILED = 2152333322U,
ICS_ERROR_BASE = 2152333568U,
ICS_NO_ERROR = 2152333568U,
ICS_BADARG = 2152333569U,
ICS_NEWFAILED = 2152333570U,
ICS_ALLOCATION = 2152333571U,
ICS_MALFORMEDDATA = 2152333572U,
ICS_PARSE = 2152333573U,
ICS_INTERNAL = 2152333574U,
ICS_FILE = 2152333575U,
ICS_USAGE = 2152333576U,
ICS_UNIMPLEMENTED = 2152333577U,
ICS_UNKNOWN = 2152333578U,
WCAP_ERROR_BASE = 2152333824U,
DAV_ERROR_BASE = 2152334081U,
DAV_NOT_DAV = 2152334081U,
DAV_DAV_NOT_CALDAV = 2152334082U,
DAV_NO_PROPS = 2152334083U,
DAV_PUT_ERROR = 2152334084U,
DAV_REMOVE_ERROR = 2152334085U,
DAV_REPORT_ERROR = 2152334086U
};
};
NS_DEFINE_STATIC_IID_ACCESSOR(calIErrors, CALIERRORS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_CALIERRORS \
/* 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_CALIERRORS \
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_CALIERRORS(_to) \
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_CALIERRORS(_to) \
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public calIErrors
{
public:
NS_DECL_ISUPPORTS
NS_DECL_CALIERRORS
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, calIErrors)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* End of implementation class template. */
#endif
#endif /* __gen_calIErrors_h__ */
|