EldoS
MsgConnect home / Documentation / MCNotifyProc function
Navigation
Web site
Support
Table Of Contents

Filter: C++  Pascal  ActiveX  C#  VB.NET  Java SE  Java ME  Palm  DLL 


MCNotifyProc

See also    


Application-defined function that is called when the reply is received.

Declaration

[C++]
    void (*MCNotifyProc)(void* resvd, unsigned long UserData, MCMessage& Message);

[Pascal]
    TMCNotifyProc = procedure ( UserData : Cardinal; var Message : TMCMessage); stdcall;

[VB6]
    Event MCXMessenger.OnCompletion(Message As IMCXMessage)

[ActiveX]
    HRESULT IMCXMessengerEvents.OnCompletion([in] IMCXMessage * Message );

[C#]
    public delegate void MCNotifyProc(int UserData, out MCMessage Message);

[VB.NET]
    Public Delegate Sub MCNotifyProc(ByVal UserData As Object, ByRef Message As MCMessage)

[Java]
    public interface MCNotifyProc { public void notifyProc(long userData, MCMessage message); }

[Java ME]
    public interface MCNotifyProc { public void notifyProc(long userData, MCMessage message); }

[Palm]
    typedef void (*MCNotifyProc)(unsigned long UserData, MCMessage& Message);

[DLL]
    void (__stdcall *MCNotifyProc)(unsigned long UserData, MCMessage* Message);

Parameters

  • UserData - Application-defined parameter that was set in SendMessageCallback function.
  • Message - The message that was sent and reply to which was received. See more here

Description

    This function is called by Messenger when it receives the reply to the message which was sent with SendMessageCallback. UserData parameter is set by the application and in object-oriented environments can contains the pointer to the object instance.

See also:     MCMessage structure     SendMessageCallback    

 
Contact Us | Subscribe | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2005, EldoS Corporation