KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
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/21572/root/usr/include/xulrunner-17.0.10/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/21572/root/usr/include/xulrunner-17.0.10/nsISmsService.h
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/sms/interfaces/nsISmsService.idl
 */

#ifndef __gen_nsISmsService_h__
#define __gen_nsISmsService_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

#include "jspubtd.h"

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMMozSmsMessage; /* forward declaration */

#define SMS_SERVICE_CID { 0xbada3cb8, 0xa568, 0x4dff, { 0xb5, 0x43, 0x52, 0xbb, 0xb3, 0x14, 0x31, 0x21 } }
#define SMS_SERVICE_CONTRACTID "@mozilla.org/sms/smsservice;1"

/* starting interface:    nsISmsService */
#define NS_ISMSSERVICE_IID_STR "00d23a50-6ed1-48b4-b1e9-5987b155e54b"

#define NS_ISMSSERVICE_IID \
  {0x00d23a50, 0x6ed1, 0x48b4, \
    { 0xb1, 0xe9, 0x59, 0x87, 0xb1, 0x55, 0xe5, 0x4b }}

class NS_NO_VTABLE nsISmsService : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISMSSERVICE_IID)

  /* boolean hasSupport (); */
  NS_IMETHOD HasSupport(bool *_retval) = 0;

  /* unsigned short getNumberOfMessagesForText (in DOMString text); */
  NS_IMETHOD GetNumberOfMessagesForText(const nsAString & text, uint16_t *_retval) = 0;

  /* void send (in DOMString number, in DOMString message, in long requestId, [optional] in unsigned long long processId); */
  NS_IMETHOD Send(const nsAString & number, const nsAString & message, int32_t requestId, uint64_t processId) = 0;

  /* [implicit_jscontext] nsIDOMMozSmsMessage createSmsMessage (in long id, in DOMString delivery, in DOMString sender, in DOMString receiver, in DOMString body, in jsval timestamp, in bool read); */
  NS_IMETHOD CreateSmsMessage(int32_t id, const nsAString & delivery, const nsAString & sender, const nsAString & receiver, const nsAString & body, const JS::Value & timestamp, bool read, JSContext* cx, nsIDOMMozSmsMessage * *_retval) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsISmsService, NS_ISMSSERVICE_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISMSSERVICE \
  NS_IMETHOD HasSupport(bool *_retval); \
  NS_IMETHOD GetNumberOfMessagesForText(const nsAString & text, uint16_t *_retval); \
  NS_IMETHOD Send(const nsAString & number, const nsAString & message, int32_t requestId, uint64_t processId); \
  NS_IMETHOD CreateSmsMessage(int32_t id, const nsAString & delivery, const nsAString & sender, const nsAString & receiver, const nsAString & body, const JS::Value & timestamp, bool read, JSContext* cx, nsIDOMMozSmsMessage * *_retval); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISMSSERVICE(_to) \
  NS_IMETHOD HasSupport(bool *_retval) { return _to HasSupport(_retval); } \
  NS_IMETHOD GetNumberOfMessagesForText(const nsAString & text, uint16_t *_retval) { return _to GetNumberOfMessagesForText(text, _retval); } \
  NS_IMETHOD Send(const nsAString & number, const nsAString & message, int32_t requestId, uint64_t processId) { return _to Send(number, message, requestId, processId); } \
  NS_IMETHOD CreateSmsMessage(int32_t id, const nsAString & delivery, const nsAString & sender, const nsAString & receiver, const nsAString & body, const JS::Value & timestamp, bool read, JSContext* cx, nsIDOMMozSmsMessage * *_retval) { return _to CreateSmsMessage(id, delivery, sender, receiver, body, timestamp, read, cx, _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_NSISMSSERVICE(_to) \
  NS_IMETHOD HasSupport(bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->HasSupport(_retval); } \
  NS_IMETHOD GetNumberOfMessagesForText(const nsAString & text, uint16_t *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNumberOfMessagesForText(text, _retval); } \
  NS_IMETHOD Send(const nsAString & number, const nsAString & message, int32_t requestId, uint64_t processId) { return !_to ? NS_ERROR_NULL_POINTER : _to->Send(number, message, requestId, processId); } \
  NS_IMETHOD CreateSmsMessage(int32_t id, const nsAString & delivery, const nsAString & sender, const nsAString & receiver, const nsAString & body, const JS::Value & timestamp, bool read, JSContext* cx, nsIDOMMozSmsMessage * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateSmsMessage(id, delivery, sender, receiver, body, timestamp, read, cx, _retval); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsSmsService : public nsISmsService
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSISMSSERVICE

  nsSmsService();

private:
  ~nsSmsService();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsSmsService, nsISmsService)

nsSmsService::nsSmsService()
{
  /* member initializers and constructor code */
}

nsSmsService::~nsSmsService()
{
  /* destructor code */
}

/* boolean hasSupport (); */
NS_IMETHODIMP nsSmsService::HasSupport(bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* unsigned short getNumberOfMessagesForText (in DOMString text); */
NS_IMETHODIMP nsSmsService::GetNumberOfMessagesForText(const nsAString & text, uint16_t *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void send (in DOMString number, in DOMString message, in long requestId, [optional] in unsigned long long processId); */
NS_IMETHODIMP nsSmsService::Send(const nsAString & number, const nsAString & message, int32_t requestId, uint64_t processId)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* [implicit_jscontext] nsIDOMMozSmsMessage createSmsMessage (in long id, in DOMString delivery, in DOMString sender, in DOMString receiver, in DOMString body, in jsval timestamp, in bool read); */
NS_IMETHODIMP nsSmsService::CreateSmsMessage(int32_t id, const nsAString & delivery, const nsAString & sender, const nsAString & receiver, const nsAString & body, const JS::Value & timestamp, bool read, JSContext* cx, nsIDOMMozSmsMessage * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_nsISmsService_h__ */

Anon7 - 2021