pdfSetMouseLinkCursor

Change the mouse cursor shown over links.
void pdfSetMouseLinkCursor(PDFViewerHandle viewer, HCURSOR cursor)
This function changes the icon (an HCURSOR handle) used as the mouse pointer when the mouse is over a hyperlink.

Note: calling pdfSetMouseCursor sets both the normal and link cursors, so make sure to call pdfSetMouseCursor first, and pdfSetMouseLinkCursor second. To set just the normal (non-link) cursor, first call pdfSetMouseCursor, then call pdfSetMouseLinkCursor with NULL.

C:
pdfSetMouseLinkCursor(viewer, LoadCursor(NULL, IDC_NO));
pdfSetMouseCursor