/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIProcess.idl */ #ifndef __gen_nsIProcess_h__ #define __gen_nsIProcess_h__ #ifndef __gen_nsIFile_h__ #include "nsIFile.h" #endif #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: nsIProcess */ #define NS_IPROCESS_IID_STR "3ed86dbe-d084-11d4-ba7a-00c04fa0d26b" #define NS_IPROCESS_IID \ {0x3ed86dbe, 0xd084, 0x11d4, \ { 0xba, 0x7a, 0x00, 0xc0, 0x4f, 0xa0, 0xd2, 0x6b }} class NS_NO_VTABLE nsIProcess : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IPROCESS_IID) /* void init (in nsIFile executable); */ NS_IMETHOD Init(nsIFile *executable) = 0; /* void initWithPid (in unsigned long pid); */ NS_IMETHOD InitWithPid(PRUint32 pid) = 0; /* void kill (); */ NS_IMETHOD Kill(void) = 0; /** XXX what charset? **/ /* void run (in boolean blocking, [array, size_is (count)] in string args, in unsigned long count, out unsigned long pid); */ NS_IMETHOD Run(PRBool blocking, const char **args, PRUint32 count, PRUint32 *pid) = 0; /* readonly attribute nsIFile location; */ NS_IMETHOD GetLocation(nsIFile * *aLocation) = 0; /* readonly attribute unsigned long pid; */ NS_IMETHOD GetPid(PRUint32 *aPid) = 0; /* readonly attribute string processName; */ NS_IMETHOD GetProcessName(char * *aProcessName) = 0; /* readonly attribute unsigned long processSignature; */ NS_IMETHOD GetProcessSignature(PRUint32 *aProcessSignature) = 0; /* readonly attribute long exitValue; */ NS_IMETHOD GetExitValue(PRInt32 *aExitValue) = 0; /** * Called to get the value of environment variable * XXX what charset? * * @param aName The string enviroment variable name * @exception NS_ERROR_OUT_OF_MEMORY * * @return The value of the requested string environment variable name */ /* string getEnvironment (in string aName); */ NS_IMETHOD GetEnvironment(const char *aName, char **_retval) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIPROCESS \ NS_IMETHOD Init(nsIFile *executable); \ NS_IMETHOD InitWithPid(PRUint32 pid); \ NS_IMETHOD Kill(void); \ NS_IMETHOD Run(PRBool blocking, const char **args, PRUint32 count, PRUint32 *pid); \ NS_IMETHOD GetLocation(nsIFile * *aLocation); \ NS_IMETHOD GetPid(PRUint32 *aPid); \ NS_IMETHOD GetProcessName(char * *aProcessName); \ NS_IMETHOD GetProcessSignature(PRUint32 *aProcessSignature); \ NS_IMETHOD GetExitValue(PRInt32 *aExitValue); \ NS_IMETHOD GetEnvironment(const char *aName, char **_retval); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIPROCESS(_to) \ NS_IMETHOD Init(nsIFile *executable) { return _to Init(executable); } \ NS_IMETHOD InitWithPid(PRUint32 pid) { return _to InitWithPid(pid); } \ NS_IMETHOD Kill(void) { return _to Kill(); } \ NS_IMETHOD Run(PRBool blocking, const char **args, PRUint32 count, PRUint32 *pid) { return _to Run(blocking, args, count, pid); } \ NS_IMETHOD GetLocation(nsIFile * *aLocation) { return _to GetLocation(aLocation); } \ NS_IMETHOD GetPid(PRUint32 *aPid) { return _to GetPid(aPid); } \ NS_IMETHOD GetProcessName(char * *aProcessName) { return _to GetProcessName(aProcessName); } \ NS_IMETHOD GetProcessSignature(PRUint32 *aProcessSignature) { return _to GetProcessSignature(aProcessSignature); } \ NS_IMETHOD GetExitValue(PRInt32 *aExitValue) { return _to GetExitValue(aExitValue); } \ NS_IMETHOD GetEnvironment(const char *aName, char **_retval) { return _to GetEnvironment(aName, _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_NSIPROCESS(_to) \ NS_IMETHOD Init(nsIFile *executable) { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(executable); } \ NS_IMETHOD InitWithPid(PRUint32 pid) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitWithPid(pid); } \ NS_IMETHOD Kill(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Kill(); } \ NS_IMETHOD Run(PRBool blocking, const char **args, PRUint32 count, PRUint32 *pid) { return !_to ? NS_ERROR_NULL_POINTER : _to->Run(blocking, args, count, pid); } \ NS_IMETHOD GetLocation(nsIFile * *aLocation) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLocation(aLocation); } \ NS_IMETHOD GetPid(PRUint32 *aPid) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPid(aPid); } \ NS_IMETHOD GetProcessName(char * *aProcessName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProcessName(aProcessName); } \ NS_IMETHOD GetProcessSignature(PRUint32 *aProcessSignature) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProcessSignature(aProcessSignature); } \ NS_IMETHOD GetExitValue(PRInt32 *aExitValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetExitValue(aExitValue); } \ NS_IMETHOD GetEnvironment(const char *aName, char **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEnvironment(aName, _retval); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsProcess : public nsIProcess { public: NS_DECL_ISUPPORTS NS_DECL_NSIPROCESS nsProcess(); virtual ~nsProcess(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsProcess, nsIProcess) nsProcess::nsProcess() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsProcess::~nsProcess() { /* destructor code */ } /* void init (in nsIFile executable); */ NS_IMETHODIMP nsProcess::Init(nsIFile *executable) { return NS_ERROR_NOT_IMPLEMENTED; } /* void initWithPid (in unsigned long pid); */ NS_IMETHODIMP nsProcess::InitWithPid(PRUint32 pid) { return NS_ERROR_NOT_IMPLEMENTED; } /* void kill (); */ NS_IMETHODIMP nsProcess::Kill() { return NS_ERROR_NOT_IMPLEMENTED; } /* void run (in boolean blocking, [array, size_is (count)] in string args, in unsigned long count, out unsigned long pid); */ NS_IMETHODIMP nsProcess::Run(PRBool blocking, const char **args, PRUint32 count, PRUint32 *pid) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIFile location; */ NS_IMETHODIMP nsProcess::GetLocation(nsIFile * *aLocation) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute unsigned long pid; */ NS_IMETHODIMP nsProcess::GetPid(PRUint32 *aPid) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute string processName; */ NS_IMETHODIMP nsProcess::GetProcessName(char * *aProcessName) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute unsigned long processSignature; */ NS_IMETHODIMP nsProcess::GetProcessSignature(PRUint32 *aProcessSignature) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long exitValue; */ NS_IMETHODIMP nsProcess::GetExitValue(PRInt32 *aExitValue) { return NS_ERROR_NOT_IMPLEMENTED; } /* string getEnvironment (in string aName); */ NS_IMETHODIMP nsProcess::GetEnvironment(const char *aName, char **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #define NS_PROCESS_CONTRACTID "@mozilla.org/process/util;1" #define NS_PROCESS_CLASSNAME "Process Specification" #endif /* __gen_nsIProcess_h__ */ .