|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/task/21573/root/proc/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/layout/inspector/public/inISearchProcess.idl
*/
#ifndef __gen_inISearchProcess_h__
#define __gen_inISearchProcess_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
class nsAString; /* forward declaration */
class inISearchObserver; /* forward declaration */
/* starting interface: inISearchProcess */
#define INISEARCHPROCESS_IID_STR "d5fa765b-2448-4686-b7c1-5ff13acb0fc9"
#define INISEARCHPROCESS_IID \
{0xd5fa765b, 0x2448, 0x4686, \
{ 0xb7, 0xc1, 0x5f, 0xf1, 0x3a, 0xcb, 0x0f, 0xc9 }}
class NS_NO_VTABLE inISearchProcess : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(INISEARCHPROCESS_IID)
/* readonly attribute boolean isActive; */
NS_IMETHOD GetIsActive(bool *aIsActive) = 0;
/* readonly attribute long resultCount; */
NS_IMETHOD GetResultCount(int32_t *aResultCount) = 0;
/* attribute boolean holdResults; */
NS_IMETHOD GetHoldResults(bool *aHoldResults) = 0;
NS_IMETHOD SetHoldResults(bool aHoldResults) = 0;
/* void searchSync (); */
NS_IMETHOD SearchSync(void) = 0;
/* void searchAsync (in inISearchObserver aObserver); */
NS_IMETHOD SearchAsync(inISearchObserver *aObserver) = 0;
/* void searchStop (); */
NS_IMETHOD SearchStop(void) = 0;
/* boolean searchStep (); */
NS_IMETHOD SearchStep(bool *_retval) = 0;
/* AString getStringResultAt (in long aIndex); */
NS_IMETHOD GetStringResultAt(int32_t aIndex, nsAString & _retval) = 0;
/* long getIntResultAt (in long aIndex); */
NS_IMETHOD GetIntResultAt(int32_t aIndex, int32_t *_retval) = 0;
/* unsigned long getUIntResultAt (in long aIndex); */
NS_IMETHOD GetUIntResultAt(int32_t aIndex, uint32_t *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(inISearchProcess, INISEARCHPROCESS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_INISEARCHPROCESS \
NS_IMETHOD GetIsActive(bool *aIsActive); \
NS_IMETHOD GetResultCount(int32_t *aResultCount); \
NS_IMETHOD GetHoldResults(bool *aHoldResults); \
NS_IMETHOD SetHoldResults(bool aHoldResults); \
NS_IMETHOD SearchSync(void); \
NS_IMETHOD SearchAsync(inISearchObserver *aObserver); \
NS_IMETHOD SearchStop(void); \
NS_IMETHOD SearchStep(bool *_retval); \
NS_IMETHOD GetStringResultAt(int32_t aIndex, nsAString & _retval); \
NS_IMETHOD GetIntResultAt(int32_t aIndex, int32_t *_retval); \
NS_IMETHOD GetUIntResultAt(int32_t aIndex, uint32_t *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_INISEARCHPROCESS(_to) \
NS_IMETHOD GetIsActive(bool *aIsActive) { return _to GetIsActive(aIsActive); } \
NS_IMETHOD GetResultCount(int32_t *aResultCount) { return _to GetResultCount(aResultCount); } \
NS_IMETHOD GetHoldResults(bool *aHoldResults) { return _to GetHoldResults(aHoldResults); } \
NS_IMETHOD SetHoldResults(bool aHoldResults) { return _to SetHoldResults(aHoldResults); } \
NS_IMETHOD SearchSync(void) { return _to SearchSync(); } \
NS_IMETHOD SearchAsync(inISearchObserver *aObserver) { return _to SearchAsync(aObserver); } \
NS_IMETHOD SearchStop(void) { return _to SearchStop(); } \
NS_IMETHOD SearchStep(bool *_retval) { return _to SearchStep(_retval); } \
NS_IMETHOD GetStringResultAt(int32_t aIndex, nsAString & _retval) { return _to GetStringResultAt(aIndex, _retval); } \
NS_IMETHOD GetIntResultAt(int32_t aIndex, int32_t *_retval) { return _to GetIntResultAt(aIndex, _retval); } \
NS_IMETHOD GetUIntResultAt(int32_t aIndex, uint32_t *_retval) { return _to GetUIntResultAt(aIndex, _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_INISEARCHPROCESS(_to) \
NS_IMETHOD GetIsActive(bool *aIsActive) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsActive(aIsActive); } \
NS_IMETHOD GetResultCount(int32_t *aResultCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetResultCount(aResultCount); } \
NS_IMETHOD GetHoldResults(bool *aHoldResults) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHoldResults(aHoldResults); } \
NS_IMETHOD SetHoldResults(bool aHoldResults) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHoldResults(aHoldResults); } \
NS_IMETHOD SearchSync(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchSync(); } \
NS_IMETHOD SearchAsync(inISearchObserver *aObserver) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchAsync(aObserver); } \
NS_IMETHOD SearchStop(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchStop(); } \
NS_IMETHOD SearchStep(bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchStep(_retval); } \
NS_IMETHOD GetStringResultAt(int32_t aIndex, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStringResultAt(aIndex, _retval); } \
NS_IMETHOD GetIntResultAt(int32_t aIndex, int32_t *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIntResultAt(aIndex, _retval); } \
NS_IMETHOD GetUIntResultAt(int32_t aIndex, uint32_t *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUIntResultAt(aIndex, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class inSearchProcess : public inISearchProcess
{
public:
NS_DECL_ISUPPORTS
NS_DECL_INISEARCHPROCESS
inSearchProcess();
private:
~inSearchProcess();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(inSearchProcess, inISearchProcess)
inSearchProcess::inSearchProcess()
{
/* member initializers and constructor code */
}
inSearchProcess::~inSearchProcess()
{
/* destructor code */
}
/* readonly attribute boolean isActive; */
NS_IMETHODIMP inSearchProcess::GetIsActive(bool *aIsActive)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long resultCount; */
NS_IMETHODIMP inSearchProcess::GetResultCount(int32_t *aResultCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean holdResults; */
NS_IMETHODIMP inSearchProcess::GetHoldResults(bool *aHoldResults)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP inSearchProcess::SetHoldResults(bool aHoldResults)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void searchSync (); */
NS_IMETHODIMP inSearchProcess::SearchSync()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void searchAsync (in inISearchObserver aObserver); */
NS_IMETHODIMP inSearchProcess::SearchAsync(inISearchObserver *aObserver)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void searchStop (); */
NS_IMETHODIMP inSearchProcess::SearchStop()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean searchStep (); */
NS_IMETHODIMP inSearchProcess::SearchStep(bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getStringResultAt (in long aIndex); */
NS_IMETHODIMP inSearchProcess::GetStringResultAt(int32_t aIndex, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long getIntResultAt (in long aIndex); */
NS_IMETHODIMP inSearchProcess::GetIntResultAt(int32_t aIndex, int32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* unsigned long getUIntResultAt (in long aIndex); */
NS_IMETHODIMP inSearchProcess::GetUIntResultAt(int32_t aIndex, uint32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_inISearchProcess_h__ */