Unit: PDFium
Returns True when the current process targets Win64
Syntax
function IsWin64: Boolean;
Parameters
None
Return Value
Boolean
Description
Returns True when the current process targets Win64
This helper participates in the PDFium DLL search policy used by TPdf.LoadLibrary
Remarks
- DLL names and paths remain unchanged so they can be copied into code
- Search functions return an empty string when no matching file is found
Example
if IsWin64 then
SubDir := 'Win64'
else
SubDir := 'Win32';
See Also