Difference between revisions of "ISInterface:ServiceNotify"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
+ | ===Syntax=== | ||
+ | *bool ServiceNotify(ISXInterface *pMaster, HISXSERVICE hService, ISXInterface *pTarget, unsigned long MSG, void *lpData) | ||
== Purpose == | == Purpose == | ||
− | + | Sending a message to a specific client of this service | |
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
+ | *ISXInterface *pMaster | ||
+ | :'''[in]''' Pointer to the extension | ||
+ | *HISXSERVICE hService | ||
+ | :'''[in]''' Service handler returned by [[ISInterface:RegisterService|RegisterService]] | ||
+ | *ISXInterface *pTarget | ||
+ | : 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 === | === Return Value === | ||
+ | *bool | ||
+ | :Returns true on success, false on failure | ||
+ | == Examples == | ||
− | |||
== See Also == | == See Also == | ||
* [[ISXDK:ISInterface|ISInterface]] | * [[ISXDK:ISInterface|ISInterface]] | ||
+ | * [[ISInterface:ServiceBroadcast|ServiceBroadcast]] | ||
+ | * [[ISInterface:RegisterService|RegisterService]] | ||
+ | * [[ISInterface:ShutdownService|ShutdownService]] | ||
[[Category:ISXDK]] | [[Category:ISXDK]] | ||
[[Category:ISInterface]] | [[Category:ISInterface]] |
Revision as of 21:48, 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
- 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