/usr/include/thunderbird/nsICommandLineRunner.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 120 121 122 123 124 125 126 127 128 129 130 131 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsICommandLineRunner.idl
*/
#ifndef __gen_nsICommandLineRunner_h__
#define __gen_nsICommandLineRunner_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsICommandLine_h__
#include "nsICommandLine.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: nsICommandLineRunner */
#define NS_ICOMMANDLINERUNNER_IID_STR "c9f2996c-b25a-4d3d-821f-4cd0c4bc8afb"
#define NS_ICOMMANDLINERUNNER_IID \
{0xc9f2996c, 0xb25a, 0x4d3d, \
{ 0x82, 0x1f, 0x4c, 0xd0, 0xc4, 0xbc, 0x8a, 0xfb }}
class NS_NO_VTABLE nsICommandLineRunner : public nsICommandLine {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICOMMANDLINERUNNER_IID)
/* void init (in long argc, in nsArgvArray argv, in nsIFile workingDir, in unsigned long state); */
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) = 0;
/* void setWindowContext (in nsIDOMWindow aWindow); */
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) = 0;
/* void run (); */
NS_IMETHOD Run(void) = 0;
/* readonly attribute AUTF8String helpText; */
NS_IMETHOD GetHelpText(nsACString & aHelpText) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsICommandLineRunner, NS_ICOMMANDLINERUNNER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICOMMANDLINERUNNER \
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) override; \
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) override; \
NS_IMETHOD Run(void) override; \
NS_IMETHOD GetHelpText(nsACString & aHelpText) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICOMMANDLINERUNNER(_to) \
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) override { return _to Init(argc, argv, workingDir, state); } \
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) override { return _to SetWindowContext(aWindow); } \
NS_IMETHOD Run(void) override { return _to Run(); } \
NS_IMETHOD GetHelpText(nsACString & aHelpText) override { return _to GetHelpText(aHelpText); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICOMMANDLINERUNNER(_to) \
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(argc, argv, workingDir, state); } \
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWindowContext(aWindow); } \
NS_IMETHOD Run(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Run(); } \
NS_IMETHOD GetHelpText(nsACString & aHelpText) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHelpText(aHelpText); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsCommandLineRunner : public nsICommandLineRunner
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICOMMANDLINERUNNER
nsCommandLineRunner();
private:
~nsCommandLineRunner();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsCommandLineRunner, nsICommandLineRunner)
nsCommandLineRunner::nsCommandLineRunner()
{
/* member initializers and constructor code */
}
nsCommandLineRunner::~nsCommandLineRunner()
{
/* destructor code */
}
/* void init (in long argc, in nsArgvArray argv, in nsIFile workingDir, in unsigned long state); */
NS_IMETHODIMP nsCommandLineRunner::Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setWindowContext (in nsIDOMWindow aWindow); */
NS_IMETHODIMP nsCommandLineRunner::SetWindowContext(nsIDOMWindow *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void run (); */
NS_IMETHODIMP nsCommandLineRunner::Run()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AUTF8String helpText; */
NS_IMETHODIMP nsCommandLineRunner::GetHelpText(nsACString & aHelpText)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsICommandLineRunner_h__ */
|