Lines Matching full:handle
15 // extern HANDLE g_hModule;
158 DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindNext(FPDF_SCHHANDLE handle)
160 if (!handle) return FALSE;
161 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle;
164 DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindPrev(FPDF_SCHHANDLE handle)
166 if (!handle) return FALSE;
167 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle;
170 DLLEXPORT int STDCALL FPDFText_GetSchResultIndex(FPDF_SCHHANDLE handle)
172 if (!handle) return 0;
173 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle;
176 DLLEXPORT int STDCALL FPDFText_GetSchCount(FPDF_SCHHANDLE handle)
178 if (!handle) return 0;
179 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle;
182 DLLEXPORT void STDCALL FPDFText_FindClose(FPDF_SCHHANDLE handle)
184 if (!handle) return;
185 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle;
187 handle=NULL;