Difference between revisions of "ISInterface:ServiceNotify"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 10: Line 10:
 
:'''[in]''' Service handler returned by [[ISInterface:RegisterService|RegisterService]]
 
:'''[in]''' Service handler returned by [[ISInterface:RegisterService|RegisterService]]
 
*ISXInterface *pTarget
 
*ISXInterface *pTarget
: Client to send the notification to  
+
:'''[in]''' Client to send the notification to  
 
*unsigned long MSG
 
*unsigned long MSG
 
:'''[in]''' Service specific message number
 
:'''[in]''' Service specific message number

Latest revision as of 21:50, 2 September 2005

Syntax

  • bool ServiceNotify(ISXInterface *pMaster, HISXSERVICE hService, ISXInterface *pTarget, unsigned long MSG, void *lpData)

Purpose

Sending a message to a specific client of this service

Usage

Parameters

  • ISXInterface *pMaster
[in] Pointer to the extension
  • HISXSERVICE hService
[in] Service handler returned by RegisterService
  • ISXInterface *pTarget
[in] Client to send the notification to
  • unsigned long MSG
[in] Service specific message number
  • void *lpData
[in] Data to be passed along with the message

Return Value

  • bool
Returns true on success, false on failure

Examples

See Also