Home | History | Annotate | Download | only in src

Lines Matching refs:Bookmark

43 DLLEXPORT FPDF_DEST STDCALL FPDFBookmark_GetDest(FPDF_DOCUMENT document, FPDF_BOOKMARK bookmark)

46 if (bookmark == NULL) return NULL;
48 CPDF_Bookmark Bookmark = (CPDF_Dictionary*)bookmark;
50 CPDF_Dest dest = Bookmark.GetDest(pDoc);
53 // If this bookmark is not directly associated with a dest, we try to get action
54 CPDF_Action Action = Bookmark.GetAction();
59 DLLEXPORT FPDF_ACTION STDCALL FPDFBookmark_GetAction(FPDF_BOOKMARK bookmark)
61 if (bookmark == NULL) return NULL;
63 CPDF_Bookmark Bookmark = (CPDF_Dictionary*)bookmark;
64 return Bookmark.GetAction();