Home | History | Annotate | Download | only in src

Lines Matching defs:m_pInfo

13 	FPDF_SYSFONTINFO*	m_pInfo;
17 if (m_pInfo->Release)
18 m_pInfo->Release(m_pInfo);
24 if (m_pInfo->EnumFonts) {
25 m_pInfo->EnumFonts(m_pInfo, pMapper);
33 if (m_pInfo->MapFont)
34 return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family, family, &bExact);
40 if (m_pInfo->GetFont)
41 return m_pInfo->GetFont(m_pInfo, family);
47 if (m_pInfo->GetFontData)
48 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
54 if (m_pInfo->GetFaceName == NULL) return FALSE;
55 FX_DWORD size = m_pInfo->GetFaceName(m_pInfo, hFont, NULL, 0);
58 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size);
66 if (m_pInfo->GetFontCharset) {
67 charset = m_pInfo->GetFontCharset(m_pInfo, hFont);
75 if (m_pInfo->DeleteFont)
76 m_pInfo->DeleteFont(m_pInfo, hFont);
90 pFontInfo->m_pInfo = pFontInfoExt;