AnnoSetAnnoMsgFunc

#include “BiAnno.h”

void CALLBACK AnnoSetAnnoMsgFunc( INT_PTR pAnno, AnnoMsgFn pFunc, void far * lpParam)

Description

This function specifies the callback function for hyperlink.

Parameters

INT_PTR

PAnno

Annotation handle

AnnoMsgFn

pFunc

Callback function

void far*

lpParam

User defined parameter

Return value

void

Programming Notes

typedef void (CALLBACK *AnnoMsgFn)(void far * lpParam);

If you set the A_ANNO_MSG hyperlink type for an annotation object and click the object on in run mode, the specified pFunc function will be called.

Code Example

None