typedef struct _VECTORLINKFILEINFO
{
L_TCHAR szPath[L_MAXPATH]; // path to the file
}VECTORLINKFILEINFO, *pVECTORLINKFILEINFO;
The VECTORLINKFILEINFO structure contains the path of the target file assigned to a hyperlinked vector object.
Character string that contains the URL for the file that will be opened when the hyperlinked vector object is clicked.
pVECTORLINKFILEINFO is a pointer to a VECTORLINKFILEINFO structure. Where the function parameter type is pVECTORLINKFILEINFO, you can declare a VECTORLINKFILEINFO variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pVECTORLINKFILEINFO variable is necessary only if your program requires a pointer.
A hyperlinked vector object can be assigned a target file. The vector toolkit opens the specified file whenever the end-user clicks on the hyperlinked vector object. Currently, clicking an object is the only event available.
The VECTORLINKFILEINFO structure is used with the VECTORLINKDESC structure.