diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/aslayer_HFTServer.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/aslayer_HFTServer.html deleted file mode 100644 index 018891ce..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/aslayer_HFTServer.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - -Acro Support Layer: HFTServer - - - - -
-DL Logo -
-
-
-
-
-

HFTServer Typedefs

- -

HFTServer

- -
Header: ASExpT.h:586
-
- -

Description

- -
Each HFT is serviced by an HFT server. The HFT server is responsible for handling requests to obtain or destroy its HFT. An HFTServer is an object that manages several versions of an HFT for different clients which may have been compiled with different versions of the HFT's API.
-
- -

Syntax

- -typedef struct _t_HFTServer *HFTServer; - -

Returned From

- - - -

Used By

- - -
-
-
-

HFTServer Callback Signatures

- -

HFTServerDestroyProc

- -
Header: ASExpT.h:610
-
- -

Description

- -
A callback for an HFT server. This destroys the specified HFT (for example, by calling HFTServerDestroy()).
-
- -

Related Methods

- - -
-
- -

Syntax

- -void HFTServerDestroyProc(HFTServer hftServer, void *rock); - -

Parameters

- - -
hftServer
-
IN/OUT The HFT server associated with this destroy proc.
-
rock
-
IN/OUT User-supplied data that was passed in the call to HFTServerNew().
-
- -

Used By

- - -
-
-
-

HFTServer Functions

- -

HFTServerDestroy

- -
Header: ASProcs.h:193
-
- -

Description

- -
Destroys an HFT server. Call this method only if the HFT will not be used again.
-
- -

Related Methods

- - -
-
- -

Syntax

- -void HFTServerDestroy(HFTServer hftServer); - -

Parameters

- -
hftServer
-
IN/OUT The HFT server to destroy.
-
-
-

HFTServerNew

- -
Header: ASProcs.h:183
-
- -

Description

- -
Creates a new Host Function Table (HFT) server. An HFT server is responsible for creating an instance of an HFT with the specified version number, and destroying the HFT.
-
- -

Related Methods

- -HFTNewEx -HFTServerDestroy
-
- -

Syntax

- -HFTServer HFTServerNew(const char *name, HFTServerProvideHFTProc serverProc, HFTServerDestroyProc destroyProc, void *clientData); - -

Parameters

- - - - -
name
-
The new HFT server's name.
-
serverProc
-
(Required) A user-supplied callback that provides an HFT when given a version number. This procedure is called by ASExtensionMgrGetHFT() when another plug-in imports the HFT.
-
destroyProc
-
(Optional) A user-supplied callback that destroys the specified HFT (this generally means deallocating the memory associated with the HFT). This procedure is called by HFTDestroy().
-
clientData
-
A pointer to user-supplied data to pass to the HFT server.
-
- -

Returns

- -
The newly created HFT server.
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_General.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_General.html deleted file mode 100644 index da94687a..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_General.html +++ /dev/null @@ -1,1053 +0,0 @@ - - - - - - - - -Additional functionality from Datalogics: General - - - - -
-DL Logo -
-
-
-
-
-

General Definitions

- -

FOUR_CHAR_CODE

- -
Header: DLExtrasExpT.h:16
-
- -

Syntax

- -#define FOUR_CHAR_CODE ( x )( x ) -
-
-
-

General Enumerations

- -

AC_OptionCode

- -
Header: DLExtrasExpT.h:22
-
- -

Description

- -
Datalogics-specific flags for the Acro Color Layer.
-
- -

Enum Constants

- - - -
AC_Option_BlackPointCompensation=FOUR_CHAR_CODE('kptc')
-
Controls whether to adjust for differences in black points when converting colors between color spaces. If enabled the full dynamic range of the source space is mapped into the full dynamic range of the destination space. If disabled, the dynamic range of the source space is simulated in the destination space (which can result in blocked or gray shadows) This option is ignored if the rendering intent for the transformation is AC_AbsColorimetric. Default is 0 (zero).
-
AC_Option_Dither8=FOUR_CHAR_CODE('dth8')
-
Dither transformations to 8 bit color spaces. This may be ignored by optimized transforms. This option is used by AC_ApplyTransform. Default is 0 (zero).
-
AC_OptionCode_MaxEnum=0xFFFFFFFFL
-
-
- -

Used By

- - -
-

DLImageCompression

- -
Header: DLExtrasExpT.h:449
-
- -

Description

- -
Compression values for exporting TIF images.
-
- -

Enum Constants

- - - - - - - -
Compression_Default
-
Use the default for the output image type.
-
Compression_NONE
-
Use no image compression. Valid for BMP, PNG and TIFF outputs only.
-
Compression_FLATE
-
Deflate algorithm (PNG only). An open source standard widely used for creating zip files and with PDF.
-
Compression_LZW
-
Lempel-Ziv-Welch, valid for TIFF output. A lossless algorithm, resulting files are larger but retain original quality.
-
Compression_G3
-
CCITT Group3 compression. Valid for TIFF, requires colorModel gray. A lossless algorithm for black and white images that efficiently compresses whitespace.
-
Compression_G4
-
CCITT Group4 compression. Valid for TIFF, requires colorModel gray. A lossless algorithm for black and white images based on G3.
-
Compression_DCT
-
Discrete Cosine Transform. Lossy algorithm, valid for JPEG. Best when used with continuous tone (such as photographs).
-
- -

Returned From

- - - -

Used In

- - -
-

DLImageExportType

- -
Header: DLExtrasExpT.h:431
-
- -

Description

- -
Export Image Types.
-
- -

Enum Constants

- - - - - - - -
ExportType_Invalid
-
Used for error handeling
-
ExportType_TIF
-
Tagged Image File Format
-
ExportType_JPEG
-
Joint Photographic Experts Group
-
ExportType_BMP
-
Microsoft Windows Bitmap
-
ExportType_PNG
-
Portable Network Graphic
-
ExportType_GIF
-
Graphics Interchange Format
-
ExportType_MultiTIF
-
Multiple TIF's in a file
-
- -

Used By

- - -
-

FontRescanFlags

- -
Header: DLExtrasExpT.h:73
-
- -

Description

- -
flags for rescanning font directories for additional fonts after Library initialization.
-
- -

Enum Constants

- - - -
FontRescan_Files=1
-
This will rescan just the fields defined in dirList, plus those added with PDFLAddFontDirectories.
-
FontRescan_System=2
-
This will rescan the system directories.
-
FontRescan_All=3
-
This, or an "or" of the previous two, will rescan both.
-
- -

Used By

- - -
-

PDFOptimizerCompressionType

- -
Header: DLExtrasExpT.h:84
-
- -

Description

- -
types of compression for PDFOptimizer
-
- -

Enum Constants

- - - - - - - - - -
PDFOptimizerRecompressNone=0
-
Used only when original image is not compressed
-
PDFOptimizerRecompressSame
-
Compress using the same compression
-
PDFOptimizerRecompressFlate
-
Compress image using Flate
-
PDFOptimizerRecompressJpeg
-
Compress image using Jpeg
-
PDFOptimizerRecompressJP2k
-
Compress image using JPEG2000
-
PDFOptimizerRecompressJBig
-
Compress image using JBig2
-
PDFOptimizerRecompressCCITTG4
-
Compress image using CCITTG4
-
PDFOptimizerRecompressCCITTG3
-
Compress image using CCITTG3
-
PDFOptimizerRecompressFlateJpeg
-
Compress using Flate and Jpeg
-
- -

Used By

- - - -

Used In

- - -
-
-
-

General Structures

- -

DLPDEImageExportParams

- -
Header: DLExtrasExpT.h:467
-
- -

Description

- -
Structure containing additional image export parameters that can be set by the user.
-
- -

Syntax

- -
- - - - - - - - - - - -
struct DLPDEImageExportParams { -
-
ASBool ReverseGray;
-
Default: false. When set to true reverse GrayScale image. This is only valid for images using the DeviceGray ColorSpace.
-
ASBool TIFFBlackIsOne;
-
Default: false. When set to true Photometrically reverse a TIF image. This is only valid for an output image of type TIF.
-
ASBool HalftoneGrayImages;
-
Default: false. Convert 8bpc grayscale images to 1bpc (B/W) images using a 45 degree line screen set for 106lpi at 600dpi.
-
ASInt32 JPEGQuality;
-
Default: 75. Quality of the image(0-100). Note this is only valid for JPEG Images.
-
ASInt32 ExportDPI;
-
Default: 72. This value sets the image's DPI (Dots Per Inch), which will be used during the exporting process.
-
DLImageCompression TIFFCompression;
-
Default: Default. Type of compression to be used in saving the image to a file. Note this is only valid for TIF Images.
-
ASUns8 MonochromeThreshold;
-
Default: 128. Threshold to use for determining which bits are white or black for Monochrome output(0-255). This is only valid for TIF Images using G3 or G4 compression and HalftoneGrayImages must be set to false.
-
ASBool TIFFCMYKAlpha;
-
Default: false. When set to true, if the image data is in CMYK and there is a Soft Mask image present, they will be combined as CMYK + Alpha Channel TIFF output (40-bit). This is only valid for an output image of type TIF.
-
ASBool RaiseExceptionIfNotUsableColor;
-
Default: false. When true, an exception will be raised if the image being saved is not in a format this graphic form can save natively. When false, we will automatically convert the image into a form that can be saved natively (Generally, that for will be DeviceRGB, using the sRGB profile.
-
ASBool WriteSeparationColorsToTIFF;
-
Default: false. When true, we will output the separation color space to a TIFF image, using the TIFF Photoshop tag. When false, Separation colors will be converted their alternate color space, and rendered as RGB.
-
ASBool DisableAlphaChannelGeneration;
-
Default: false. When set to false, if the image data is in RGB and there is a Mask present, they will be combined as RGBA + Alpha Channel output (32-bit). When set to true, if the image date is in RGB and there is a Mask present, they will not be combined and the output will be RGB (24-bit). This is only valid for an output image of type TIF and PNG.
-
} DLPDEImageExportParams; -
-
-
- -

Returned From

- - - -

Used By

- - -
-

FormsExtensionVersion

- -
Header: DLExtrasExpT.h:546
-
- -

Description

- -
Structure to hold the version number retrieved by GetFormsExtensionVersion()
-
- -

Syntax

- -
- - - - -
struct FormsExtensionVersion { -
-
ASInt32 majorVersion;
-
-
ASInt32 minorVersion;
-
-
ASInt32 subVersion;
-
-
ASInt32 releaseVersion;
-
-
} FormsExtensionVersionRec, *FormsExtensionVersion; -
-
-
- -

Used By

- - -
-
-
-

General Functions

- -

ACGetOption

- -
Header: DLExtrasProcs.h:122
-
- -

Description

- -
Returns the current value for the given AC_OptionCode. This call controls the behavior of colorspace conversions and manipulations carried out via AC-layer calls; it does not impact other Adobe PDF Library color behaviors.
-
- -

Related Methods

- - -
-
- -

Syntax

- -AC_Error ACGetOption(AC_OptionCode code, ASUns32 *value); - -

Parameters

- - -
code
-
AC_Option_BlackPointCompensation indicates whether the Acrobat Color Engine will carry out black point compensation when converting between colorspaces with different black points.
-
value
-
AC_Option_BlackPointCompensation flag value to be retrieved (Filled by the method)
-
- -

Returns

- -
Indicates if an error occurred.
-
-

ACSetOption

- -
Header: DLExtrasProcs.h:132
-
- -

Description

- -
Sets the current value for the option specified by the supplied AC_OptionCode. This call controls the behavior of colorspace conversions and manipulations carried out via AC-layer calls; it does not impact other Adobe PDF Library color behaviors.
-
- -

Related Methods

- - -
-
- -

Syntax

- -AC_Error ACSetOption(AC_OptionCode code, ASUns32 value); - -

Parameters

- - -
The
-
option code.
-
value
-
The flag value to be set.
-
- -

Returns

- -
Indicates if an error occurred.
-
-

ASSetDefaultFileSys

- -
Header: DLExtrasProcs.h:18
-
- -

Description

- -
Sets the default file system implementation for a platform. Added by Datalogics.
-
- - -
- -

Syntax

- -void ASSetDefaultFileSys(ASFileSys fileSys); - -

Parameters

- -
fileSys
-
Alternate file system to be used
-
-
-

ConvertPDFToExcel

- -
Header: DLExtrasProcs.h:988
-
- -

Description

- -
Converts a PDF file from the specified file path to a Microsoft Excel document (.xlsx) at the specified file path.
-
- -

Syntax

- -ASBool ConvertPDFToExcel(ASPathName inputPath, ASPathName outputPath, ASFileSys fileSys); - -

Parameters

- - - -
inputPath
-
The input path of the PDF document.
-
outputPath
-
The output path of the Office document.
-
fileSys
-
The File System in use.
-
- -

Returns

- -
if True, the Conversion was successful.
-
-

ConvertPDFToPowerPoint

- -
Header: DLExtrasProcs.h:998
-
- -

Description

- -
Converts a PDF file from the specified file path to a Microsoft Powerpoint document (.pptx) at the specified file path.
-
- -

Syntax

- -ASBool ConvertPDFToPowerPoint(ASPathName inputPath, ASPathName outputPath, ASFileSys fileSys); - -

Parameters

- - - -
inputPath
-
The input path of the PDF document.
-
outputPath
-
The output path of the Office document.
-
fileSys
-
The File System in use.
-
- -

Returns

- -
if True, the Conversion was successful.
-
-

ConvertPDFToWord

- -
Header: DLExtrasProcs.h:978
-
- -

Description

- -
Converts a PDF file from the specified file path to a Microsoft Word document (.docx) at the specified file path.
-
- -

Syntax

- -ASBool ConvertPDFToWord(ASPathName inputPath, ASPathName outputPath, ASFileSys fileSys); - -

Parameters

- - - -
inputPath
-
The input path of the PDF document.
-
outputPath
-
The output path of the Office document.
-
fileSys
-
The File System in use.
-
- -

Returns

- -
if True, the Conversion was successful.
-
-

DLColorConvertPDEImage

- -
Header: DLExtrasProcs.h:1131
-
- -

Description

- -
Converts the colorspace of a provided image using a new color profile and render intent.
-
- -

Syntax

- -PDEImage DLColorConvertPDEImage(PDDoc *document, PDEImage image, AC_ProfileCode code, AC_RenderIntent intent, ASBool embed); - -

Parameters

- - - - - -
document
-
A pointer to a PDDoc object containing the PDEImage.
-
image
-
The PDEImage in a PDF document that will be converted.
-
code
-
The code of the target profile for the conversion.
-
intent
-
The rendering intent of used to convert the image.
-
embed
-
A boolian value. If true, embed the target profile. If false the resulting color is Device, if possible.
-
- -

Returns

- -
A newly converted PDEImage image.
-
-

DLCreatePDEImageFromFile

- -
Header: DLExtrasProcs.h:1045
-
- -

Description

- -
Imports an image file (TIFF, JPEG, BMP, PNG, GIF) from the specified file path to a PDEImage.
-
- -

Syntax

- -PDEImage DLCreatePDEImageFromFile(PDDoc outDoc, ASPathName imageInputPath, ASFileSys fileSys); - -

Parameters

- - - -
outDoc
-
The output PDF document object.
-
imageInputPath
-
The input path of the image.
-
fileSys
-
The File System in use.
-
- -

Returns

- -
A PDEImage object created from the input image.
-
-

DLCreateResampledPDEImage

- -
Header: DLExtrasProcs.h:1165
-
- -

Description

- -
Create a new PDEImage from an existing one modifying the resolution (dots per inch). This image can be freely modified inside a PDF document.
-
- -

Syntax

- -PDEImage DLCreateResampledPDEImage(PDEImage image, DLPDEImageExportParams *exportParams, ASInt32 resolution); - -

Parameters

- - - -
image
-
The PDEImage in a PDF document.
-
exportParams
-
A pointer to the DLPDEImageExportParams structure used by the PDEImage. During the function call, ExportDPI is updated to using the new resolution.
-
resolution
-
The new resolution as a 32 bit integer value.
-
- -

Returns

- -
A new PDEImage recreated using the new resolution. This newly created image can be freely manipulated inside a PDF document.
-
-

DLEnableLicensedBehavior

- -
Header: DLExtrasProcs.h:20
-
- -

Syntax

- -ASBool DLEnableLicensedBehavior(const char *keyVal, const char *additionalInfo); -
-

DLExportPDEImage

- -
Header: DLExtrasProcs.h:1054
-
- -

Description

- -
Exports a PDEImage from a document to a specified image type TIFF, JPEG, BMP, PNG, GIF the specified file path.
-
- -

Syntax

- -void DLExportPDEImage(PDEImage image, ASPathName outputPath, DLImageExportType exporttype, DLPDEImageExportParams exportParams); - -

Parameters

- - - - -
image
-
The PDEImage in a PDF document.
-
outputPath
-
The output path of the image.
-
exporttype
-
The exported image format (TIFF, JPEG, BMP, PNG, GIF).
-
exportParams
-
The DLPDEImageExportParams structure.
-
-
-

DLPDEImageGetCompression

- -
Header: DLExtrasProcs.h:1154
-
- -

Description

- -
Gets the compression scheme of the image data.
-
- -

Syntax

- -DLImageCompression DLPDEImageGetCompression(const PDEImage image); - -

Parameters

- -
image
-
The PDEImage in a PDF document.
-
- -

Returns

- -
A DLImageCompression value representing the image data's compression filter.
-
-

DLPDEImageGetExportParams

- -
Header: DLExtrasProcs.h:1104
-
- -

Description

- -
Initializes a structure of PDEImage export parameters with default values.
-
- -

Syntax

- -DLPDEImageExportParams DLPDEImageGetExportParams(); - -

Returns

- -
The DLImageExportParams structure.
-
-

DLPDEImageGetHeight

- -
Header: DLExtrasProcs.h:1098
-
- -

Description

- -
Gets height of specified image.
-
- -

Syntax

- -ASDouble DLPDEImageGetHeight(const PDEImage image); - -

Parameters

- -
image
-
The PDEImage in a PDF document.
-
- -

Returns

- -
The height of image as an ASDouble.
-
-

DLPDEImageGetIntent

- -
Header: DLExtrasProcs.h:1139
-
- -

Description

- -
Gets the image's Render Intent.
-
- -

Syntax

- -const char *DLPDEImageGetIntent(const PDEImage inputImage); - -

Parameters

- -
image
-
The PDEImage in a PDF document.
-
- -

Returns

- -
A pointer to the string representation of the ASAtom name of the image's intent data.
-
-

DLPDEImageGetSoftMask

- -
Header: DLExtrasProcs.h:1112
-
- -

Description

- -
Gets the soft masl of a provided image.
-
- -

Syntax

- -PDEImage *DLPDEImageGetSoftMask(const PDEImage image); - -

Parameters

- -
image
-
The PDEImage in a PDF document.
-
- -

Returns

- -
The pointer to the PDEImage's soft mask, or a null pointer of no mask exists.
-
-

DLPDEImageGetWidth

- -
Header: DLExtrasProcs.h:1090
-
- -

Description

- -
Gets width of specified image.
-
- -

Syntax

- -ASDouble DLPDEImageGetWidth(const PDEImage image); - -

Parameters

- -
image
-
The PDEImage in a PDF document.
-
- -

Returns

- -
The width of image as an ASDouble.
-
-

DLPDEImageRotate

- -
Header: DLExtrasProcs.h:1082
-
- -

Description

- -
Rotates an image by theta degrees. A rotation is produced by [cos(theta), sin(theta),-sin(theta), cos(theta), 0, 0], which has the effect of rotating the coordinate system axes by an angle theta (degrees) counterclockwise.
-
- -

Syntax

- -void DLPDEImageRotate(PDEImage image, ASDouble theta); - -

Parameters

- - -
image
-
The PDEImage in a PDF document.
-
theta
-
The rotation angle (degrees).
-
-
-

DLPDEImageScale

- -
Header: DLExtrasProcs.h:1074
-
- -

Description

- -
Scales an image by sx units. A scaling is obtained by [sx 0 0 sy 0 0]. This scales the coordinates so that 1 unit in the horizontal and vertical dimension of the new coordinate system is the same size as sx and sy units, respectively, as in the previous coordinate system.
-
- -

Syntax

- -void DLPDEImageScale(PDEImage image, ASDouble sx, ASDouble sy); - -

Parameters

- - - -
image
-
The PDEImage in a PDF document.
-
sx
-
X scaling factor.
-
sy
-
Y scaling factor.
-
-
-

DLPDEImageSetIntent

- -
Header: DLExtrasProcs.h:1146
-
- -

Description

- -
Sets the image's Render Intent.
-
- -

Syntax

- -void DLPDEImageSetIntent(PDEImage inputImage, const char *renderIntent); - -

Parameters

- - -
image
-
The PDEImage in a PDF document.
-
renderIntent
-
A pointer to the string representation of an ASAtom value that will be used to set the image's intent data.
-
-
-

DLPDEImageSetSoftMask

- -
Header: DLExtrasProcs.h:1119
-
- -

Description

- -
Uses the specified soft mask and applies it to the PDEImage.
-
- -

Syntax

- -void DLPDEImageSetSoftMask(PDEImage image, PDEImage *softMask); - -

Parameters

- - -
image
-
The PDEImage in a PDF document.
-
softMask
-
The pointer to the PDEImage's soft mask, that will be applied to the PDEImage, or a null pointer which will delete the current soft mask.
-
-
-

DLPDEImageTranslate

- -
Header: DLExtrasProcs.h:1065
-
- -

Description

- -
Translates an image by (tx,ty) units. A translation is specified as [ 1 0 0 1 tx ty], where tx and ty are the distance to translate from the origin of the coordinate system in the horizontal and vertical dimension, respectively.
-
- -

Syntax

- -void DLPDEImageTranslate(PDEImage image, ASDouble tx, ASDouble ty); - -

Parameters

- - - -
image
-
The PDEImage in a PDF document.
-
tx
-
X translation distance.
-
ty
-
Y translation distance.
-
-
-

PDFLAddFontDirectories

- -
Header: DLExtrasProcs.h:432
-
- -

Description

- -

This call allows Adobe PDF Library to rescan for fonts without re-initializing. This will allow an operating Library process to detect and update new font directories and resources after startup, without requiring a restart and re-initialization.
-

This will add one or more directories, and the fonts within them, to the set of all directories containing fonts (those specified in the DirList string arrays of resource locations).

- -

-

This call should be followed by a call to PDFLRescanFontDirectories after all new font directories have been loaded.

-
-
- -

Related Methods

- - -
-
- -

Syntax

- -ASBool PDFLAddFontDirectories(ASInt32 pathCount, ASPathName *paths); - -

Parameters

- - -
pathCount
-
Number of new paths to be added.
-
paths
-
Paths to new resource locations to be added.
-
- -

Returns

- -
Indicates if fonts directories were changed.
-
-

PDFLReinit

- -
Header: PDFLProcs.h:653
-
- -

Description

- -
Warm reinitialization of the Adobe PDF Library. Call this method if you closed all documents and other PD/PDE/Cos objects. Releases memory used for cached data.
-
- -

Syntax

- -ASInt32 PDFLReinit(void); -
-

PDFLRescanFontDirectories

- -
Header: DLExtrasProcs.h:419
-
- -

Description

- -

This call allows Adobe PDF Library to rescan for fonts without re-initializing. This will allow an operating Library process to detect and update new font directories and resources after startup, without requiring a restart and re-initialization.
-

This call can, depending on flag settings, force a rescan of font resource areas defined in your dirList array, a rescan of those residing in the System folder, or both. To add new font resources to your dirList array, use the PDFLAddFontDirectories call.

-
-
- -

Related Methods

- - -
-
- -

Syntax

- -ASBool PDFLRescanFontDirectories(FontRescanFlags flags); - -

Parameters

- -
flags
-
Flags controlling rescan process.
-
- -

Returns

- -
Indicates if fonts directories were changed.
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_PDDocTextFinder.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_PDDocTextFinder.html deleted file mode 100644 index 2fc7ddf1..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_PDDocTextFinder.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - -Additional functionality from Datalogics: PDDocTextFinder - - - - -
-DL Logo -
-
-
-
-
-

PDDocTextFinder Functions

- -

PDDocTextFinderAcquireMatchList

- -
Header: DLExtrasProcs.h:925
-
- -

Description

- -

Finds all regular expression (regex) matches for the given page range.
-

Only words within or partially within the page's crop box (see PDPageGetCropBox()) are included. Words outside the crop box are skipped.

- -

-

There can be only one match list in existence at a time; clients must release the previous match list, using PDDocTextFinderReleaseMatchList(), before creating a new one.

- -
-

Available only on Windows, Mac, and Linux platforms

-
-
- - -
- -

Syntax

- -PDDocTextFinderMatchList PDDocTextFinderAcquireMatchList(PDDocTextFinder mObj, PDDoc pdDoc, ASInt32 beginPageNumber, ASInt32 endPageNumber, const char *regexstr); - -

Parameters

- - - - - -
mObj
-
IN (Required) The document text finder used to acquire the match list.
-
pdDoc
-
IN (Required) The document to search for matches.
-
beginPageNumber
-
IN (Required) The beginning page number from which to search. The first page is 0, not 1 as designated in Acrobat. Pass PDAllPages (see PDExpT.h) to sequentially process all pages in the document.
-
endPageNumber
-
IN (Required) The end page number from which to search to. If beginPageNumber is set to PDAllPages, this parameter is ignored.
-
regexStr
-
IN (Required) Regular expression to use for search.
-
- -

Returns

- -
The PDDocTextFinderMatchList structure.
- -

Exceptions

- -
-
-
-
-
-

PDDocTextFinderCreate

- -
Header: DLExtrasProcs.h:877
-
- -

Description

- -
Creates a document text finder that is used to extract words or phrases that match regular expressions from a PDF file based on words extracted using a given word finder configuration. Available only on Windows, Mac, and Linux platforms
-
- - -
- -

Syntax

- -PDDocTextFinder PDDocTextFinderCreate(PDWordFinderConfig wfConfig); - -

Parameters

- -
wfConfig
-
IN (Required) The word finder configuration to be used to extract the words.
-
- -

Returns

- -
The newly created document text finder object that will be used to find matches.
-
-

PDDocTextFinderDestroy

- -
Header: DLExtrasProcs.h:890
-
- -

Description

- -
Destroys a document text finder. Use this when you are done extracting phrases in a file. Available only on Windows, Mac, and Linux platforms
-
- -

Related Methods

- - -
-
- -

Syntax

- -void PDDocTextFinderDestroy(PDDocTextFinder mObj); - -

Parameters

- -
mObj
-
IN (Required) The document text finder to destroy.
-
-
-

PDDocTextFinderReleaseMatchList

- -
Header: DLExtrasProcs.h:940
-
- -

Description

- -
Releases the match list. Use this to release a list created by PDDocTextFinderAcquireMatchList() when you are done using this list. Available only on Windows, Mac, and Linux platforms
-
- - -
- -

Syntax

- -void PDDocTextFinderReleaseMatchList(PDDocTextFinder mObj); - -

Parameters

- -
mObj
-
IN (Required) A document text finder object.
-
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_PDEImage.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_PDEImage.html deleted file mode 100644 index 029105c4..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/dlextras_PDEImage.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - -Additional functionality from Datalogics: PDEImage - - - - -
-DL Logo -
-
-
-
-
-

PDEImage Functions

- -

PDEImageGetColorValue

- -
Header: PERProcs.h:3224
-
- -

Description

- -

Gets an image's Color Value.
-

This call is valid only for a PDEImage which is an Image Mask

-
-
- -

Syntax

- -void PDEImageGetColorValue(IN PDEImage image, IN PDEColorValueP color); - -

Parameters

- - -
image
-
IN/OUT The image whose data is obtained.
-
colorValue
-
IN/OUT The image data.
-
- -

Exceptions

- - -
-

PDEImageRemoveIndexedColor

- -
Header: DLExtrasProcs.h:750
-
- -

Description

- -
If the image input uses an indexed color space, a new image will be created from it. The new image will use the base color space. If the image is not using an indexed color model, the original image will be incremented and returned.
- -

Note: The image returned must be released when no longer needed.

-
- -

Syntax

- -PDEImage PDEImageRemoveIndexedColor(PDEImage image); - -

Parameters

- -
image
-
The Indexed image inP.
-
- -

Returns

- -
The new image or the original image.
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/formsextension_General.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/formsextension_General.html deleted file mode 100644 index 2b487538..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/formsextension_General.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - -Forms Extension: General - - - - -
-DL Logo -
-
-
-
-
-

General Functions

- -

GetFormsExtensionVersionNumber

- -
Header: DLExtrasProcs.h:1328
-
- -

Description

- -
Retrieves the Forms Extension Version Number. *
-
- -

Syntax

- -void GetFormsExtensionVersionNumber(FormsExtensionVersion version); - -

Parameters

- -
version
-
OUT- Structure that holds the version number sub-components.
-
-
-

IsFormsExtensionSupported

- -
Header: DLExtrasProcs.h:1189
-
- -

Description

- -
Validate the Forms Extension for APDFL dependencies are present.
-
- -

Syntax

- -ASBool IsFormsExtensionSupported(void); - -

Returns

- -
if True, the Forms Extension for APDFL dependencies are present.
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/formsextension_PDDoc.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/formsextension_PDDoc.html deleted file mode 100644 index fc11f9ca..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/formsextension_PDDoc.html +++ /dev/null @@ -1,360 +0,0 @@ - - - - - - - - -Forms Extension: PDDoc - - - - -
-DL Logo -
-
-
-
-
-

PDDoc Functions

- -

PDDocConvertXFAFieldsToAcroFormFields

- -
Header: DLExtrasProcs.h:1218
-
- -

Description

- -
Convert a XFA document into a document with only AcroForms. XFA content is not widely supported by PDF processors, converting this content transforms XFA fields into AcroForm fields which are more widely supported by PDF processors. All XFA fields are removed.
-
- -

Syntax

- -void PDDocConvertXFAFieldsToAcroFormFields(PDDoc doc, ASUns32 *pagesConverted); - -

Parameters

- - -
doc
-
IN/OUT The PDF document object.
-
pagesConverted
-
OUT The number of output pages created in the converted document.
-
-
-

PDDocExportAcroFormsData

- -
Header: DLExtrasProcs.h:1257
-
- -

Description

- -
Export the AcroForms data. AcroForms data is exported to a format that can later be imported into another AcroForms document.
-
- -

Syntax

- -ASBool PDDocExportAcroFormsData(PDDoc doc, ASFileSys fileSys, ASPathName pathName, AcroFormExportType acroFormExportType); - -

Parameters

- - - - -
doc
-
IN The PDF document object.
-
fileSys
-
IN The file system to write the data to (May be NULL, in which case the default file system will be used)
-
pathName
-
OUT The path on disk of the file the AcroForms data is exported to.
-
acroFormExportType
-
IN The format type the AcroForm data should be exported to. The supported types are XFDF, FDF, and XML.
-
- -

Returns

- -
if True, the exporting succeeded.
-
-

PDDocExportXFAFormsData

- -
Header: DLExtrasProcs.h:1231
-
- -

Description

- -
Export the XFA Forms data. XFA forms data is exported to a format that can later be imported into another XFA document.
-
- -

Syntax

- -ASBool PDDocExportXFAFormsData(PDDoc doc, ASFileSys fileSys, ASPathName pathName, XFAFormExportType exportType); - -

Parameters

- - - - -
doc
-
IN The PDF document object.
-
fileSys
-
IN The file system to write the document to (May be NULL, in which case the default file system will be used)
-
pathName
-
OUT The path on disk of the file the XFA form data is exported to.
-
exportType
-
IN The format type the XFA data should be exported to. The supported types are XDP, XML, and XFD.
-
- -

Returns

- -
if True, the exporting succeeded.
-
-

PDDocFlattenAcroFormFields

- -
Header: DLExtrasProcs.h:1207
-
- -

Description

- -
Flatten an AcroForms document. Interactive AcroForm fields are flattened into static PDF page content. All AcroForm fields are removed.
-
- -

Syntax

- -void PDDocFlattenAcroFormFields(PDDoc doc); - -

Parameters

- -
IN/OUT
-
doc The PDF document object.
-
-
-

PDDocFlattenNonFormAnnotations

- -
Header: DLExtrasProcs.h:1312
-
- -

Description

- -
Flatten a Non-Form (no AcroForm, no XFA) document's Annotations. Annotations are flattened into static PDF page content.
-
- -

Syntax

- -void PDDocFlattenNonFormAnnotations(PDDoc doc); - -

Parameters

- -
doc
-
IN/OUT The PDF document object.
-
-
-

PDDocFlattenXFAFields

- -
Header: DLExtrasProcs.h:1200
-
- -

Description

- -
Flatten a XFA Document (Static or Dynamic). XFA content is not widely supported by PDF processors. Flattening this content transforms into static PDF page content that is part of typical PDF files that can easily be understood by PDF processors. All XFA fields are removed.
-
- -

Syntax

- -void PDDocFlattenXFAFields(PDDoc doc, ASUns32 *pagesOutput); - -

Parameters

- - -
doc
-
IN/OUT The PDF document object.
-
OUT
-
pagesOutput The number of output pages created in the flattened document.
-
-
-

PDDocFlattenXFAFieldsAsIfPrinted

- -
Header: DLExtrasProcs.h:1303
-
- -

Description

- -
Flatten a XFA Document (Static or Dynamic) as if printed. XFA content is not widely supported by PDF processors. Flattening this content transforms into static PDF page content that is part of typical PDF files that can easily be understood by PDF processors. All XFA fields are removed. The Flattened appearance will take into consideration how the document's appearance should appear when printed.
-
- -

Syntax

- -void PDDocFlattenXFAFieldsAsIfPrinted(PDDoc doc, ASUns32 *pagesOutput); - -

Parameters

- - -
doc
-
IN/OUT The PDF document object.
-
pagesOutput
-
OUT The number of output pages created in the flattened document.
-
-
-

PDDocGetFormsType

- -
Header: DLExtrasProcs.h:1321
-
- -

Description

- -
Returns the document's Forms Type. This method is more versatile than the related PDDocIsDynamicXFA() and PDDocIsStaticXFA() methods.
-
- -

Syntax

- -void PDDocGetFormsType(PDDoc doc, PDDocFormsType *formsType); - -

Parameters

- - -
doc
-
IN The PDF document object.
-
formsType
-
OUT The type of forms the document contains.
-
-
-

PDDocImportAcroFormsData

- -
Header: DLExtrasProcs.h:1271
-
- -

Description

- -
Import the AcroForms data. AcroForms data is imported from a supported format into the AcroForms document so its existing fields can be populated for example.
-
- -

Syntax

- -ASBool PDDocImportAcroFormsData(PDDoc doc, ASFileSys fileSys, ASPathName pathName, AcroFormImportType acroFormImportType); - -

Parameters

- - - - -
doc
-
IN/OUT The PDF document object.
-
fileSys
-
IN The file system to import the data from (May be NULL, in which case the default file system will be used)
-
pathName
-
IN The path on disk of the AcroFormsdata file to be imported.
-
acroFormImportType
-
IN The format type the data type should be imported to. The supported types are XFDF, FDF, and XML.
-
- -

Returns

- -
if True, the importing succeeded.
-
-

PDDocImportXFAFormsData

- -
Header: DLExtrasProcs.h:1244
-
- -

Description

- -
Import the XFA Forms data. XFA forms data is imported from a supported format into the XFA document so its existing fields can be populated for example.
-
- -

Syntax

- -ASBool PDDocImportXFAFormsData(PDDoc doc, ASFileSys fileSys, ASPathName pathName); - -

Parameters

- - - -
doc
-
IN/OUT The PDF document object.
-
fileSys
-
IN The file system to import the document from (May be NULL, in which case the default file system will be used)
-
pathName
-
IN The path on disk of the XFA form data file to be imported. The supported types are XDP, XML, and XFD.
-
- -

Returns

- -
if True, the importing succeeded.
-
-

PDDocIsDynamicXFA

- -
Header: DLExtrasProcs.h:1281
-
- -

Description

- -
Check if document is Dynamic XFA
-
- -

Syntax

- -ASBool PDDocIsDynamicXFA(PDDoc doc); - -

Parameters

- -
doc
-
IN The PDF document object.
-
- -

Returns

- -
if True, the document is Dynamic XFA.
-
-

PDDocIsStaticXFA

- -
Header: DLExtrasProcs.h:1290
-
- -

Description

- -
Check if document is Static XFA
-
- -

Syntax

- -ASBool PDDocIsStaticXFA(PDDoc doc); - -

Parameters

- -
doc
-
IN The PDF document object.
-
- -

Returns

- -
if True, the document is Static XFA.
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/index.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/index.html deleted file mode 100644 index ca13b0ff..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/index.html +++ /dev/null @@ -1,16217 +0,0 @@ - - - - - - - - -PDF Library API Reference - - - - - -
- - - -
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-ASAtomNull
-ASAtomNull
-ASAtom
-ASAtom
-ASAtomExistsForString
-ASAtomFromString
-ASAtomGetString
-MAX_ASCAB_KEY
-ASCab
-ASCabMungeAction
-ASCabValueType
-ASConstCab
-ASCabEnumProc
-ASCabPointerDestroyProc
-ASConstCabEnumProc
-_t_ASCabEntryRec
-ASCabCopy
-ASCabDestroy
-ASCabDestroyEmpties
-ASCabDetachBinary
-ASCabDetachCab
-ASCabDetachPathName
-ASCabDetachPointerRaw
-ASCabDetachString
-ASCabDetachText
-ASCabDup
-ASCabEnum
-ASCabEqual
-ASCabFromEntryList
-ASCabGetAtom
-ASCabGetBinary
-ASCabGetBinaryCopy
-ASCabGetBool
-ASCabGetCab
-ASCabGetDouble
-ASCabGetInt
-ASCabGetInt64
-ASCabGetPathNameCopy
-ASCabGetPointerDestroyProc
-ASCabGetPointerRaw
-ASCabGetPointerType
-ASCabGetString
-ASCabGetStringCopy
-ASCabGetText
-ASCabGetType
-ASCabGetUns
-ASCabGetUns64
-ASCabKnown
-ASCabMakeEmpty
-ASCabMunge
-ASCabNew
-ASCabNumEntries
-ASCabPutAtom
-ASCabPutBinary
-ASCabPutBool
-ASCabPutCab
-ASCabPutDouble
-ASCabPutInt
-ASCabPutInt64
-ASCabPutNull
-ASCabPutPathName
-ASCabPutPointerRaw
-ASCabPutString
-ASCabPutText
-ASCabPutUns
-ASCabPutUns64
-ASCabReadFromStream
-ASCabRemove
-ASCabRename
-ASCabValueEqual
-ASCabWriteToStream
-ASConstCabEnum
-_t_ASCalendarTimeSpan
-ASCalendarTimeSpanAddWithBase
-ASCalendarTimeSpanCompare
-ASCalendarTimeSpanDiff
-ASCRYPTSTM_EOF
-ASCryptStmModeEOF
-ASCryptStmModeRead
-ASCryptStmModeWrite
-ASCryptStm
-ASCryptStmFCloseProc
-ASCryptStmFFlushProc
-ASCryptStmFPutEOFProc
-ASCryptStmFResetProc
-ASCryptStmFilBufProc
-ASCryptStmFlsBufProc
-ASCryptStmUnGetcProc
-ASCryptStmProcs
-_t_ASCryptStmRec
-ASDate
-ASDateTimeFormat
-_t_ASTimeRec
-ASDateAddCalendarTimeSpan
-ASDateAddTimeSpan
-ASDateCalendarDiff
-ASDateClear
-ASDateCompare
-ASDateCopy
-ASDateDestroy
-ASDateDup
-ASDateExactDiff
-ASDateGetLocalTime
-ASDateGetTimeString
-ASDateGetUTCTime
-ASDateNew
-ASDateSetLocalTimeOffset
-ASDateSetTimeFromRec
-ASDateSetTimeFromString
-ASDateSetToCurrentLocalTime
-ASDateSetToCurrentUTCTime
-ASDateSubtractCalendarTimeSpan
-ASDateSubtractTimeSpan
-ASDouble
-ASReal
-_t_ASDoubleMatrix
-_t_ASDoublePoint
-_t_ASDoubleRect
-_t_ASRealMatrix
-_t_ASRealPoint
-_t_ASRealRect
-ASDoubleMatrixConcat
-ASDoubleMatrixConcat
-ASDoubleMatrixInvert
-ASDoubleMatrixInvert
-ASDoubleMatrixTransform
-ASDoubleMatrixTransform
-ASDoubleMatrixTransformRect
-ASDoubleMatrixTransformRect
-ASErrSeverity
-ASErrorCode
-restoreEnvironProc
-ASGetErrorString
-ASGetErrorStringASText
-ASGetExceptionErrorCode
-ASPopExceptionFrame
-ASPushExceptionFrame
-ASRaise
-ASRegisterErrorString
-ASRegisterErrorStringASText
-ASExtension
-ExtensionID
-ASExtensionEnumProc
-ASEnumExtensions
-ASExtensionGetFileName
-ASExtensionGetRegisteredName
-ASExtensionMgrGetHFT
-ASFILE_CREATE
-ASFILE_ENCRYPT
-ASFILE_LOCAL
-ASFILE_RANDOMACCESS
-ASFILE_READ
-ASFILE_SERIAL
-ASFILE_TEMPORARY
-ASFILE_WRITE
-MDFile
-kASFileDialUp
-kASFileDoCaching
-kASFileHasOutstandingMReads
-kASFileHasVirtualEOF
-kASFileModeDisableExplicitMReadRequests
-kASFileModeDoNotYieldIfBytesNotReady
-kASFileNoRequestIfBytesNotReady
-kASFileRaiseIfBytesNotReady
-kASFileSlowConnect
-kASFileSlowTransfer
-kASFileStillFetching
-kASFileSuspendIfBytesNotReady
-kASFileUseMRead
-ASFileStatusFlags
-ASFile
-ASFileOffset
-ASFileOffset64
-ASFilePos
-ASFilePos64
-ASMDFile
-ASTFilePos
-ASTFilePos
-ASFileCompletionProc
-ASFileAcquirePathName
-ASFileCanSetEOF
-ASFileClearOutstandingMReads
-ASFileClose
-ASFileFlush
-ASFileFromMDFile
-ASFileGetEOF
-ASFileGetEOF64
-ASFileGetFileSys
-ASFileGetFileSysByName
-ASFileGetMDFile
-ASFileGetOpenMode
-ASFileGetPos
-ASFileGetPos64
-ASFileGetURL
-ASFileHardFlush
-ASFileHasOutstandingMReads
-ASFileIsSame
-ASFileMReadRequest
-ASFileOpenWithVirtualEOF
-ASFilePushData
-ASFileRead
-ASFileRegisterFileSys
-ASFileReopen
-ASFileSetEOF
-ASFileSetEOF64
-ASFileSetMode
-ASFileSetPos
-ASFileSetPos64
-ASFileStmRdOpen
-ASFileStmWrOpen
-ASFileUnregisterFileSys
-ASFileWrite
-ASFileSysCreatePathFromCFURLRef
-ASFileSysCreatePathFromCString
-ASFileSysCreatePathFromDIPath
-ASFileSysCreatePathFromDIPathText
-ASFileSysCreatePathFromFSRef
-ASFileSysCreatePathFromFSRefWithCFStringRef
-ASFileSysCreatePathFromFSSpec
-ASFileSysCreatePathFromPOSIXPath
-ASFileSysCreatePathWithFolderName
-ASFileSysCreatePathWithFolderNameWithASText
-KAITypeCode
-kAPFTypeCode
-kAcrobatCreatorCode
-kDictionaryTypeCode
-kEDNTypeCode
-kEPSTypeCode
-kETDTypeCode
-kExcelCreatorCode
-kFDFTypeCode
-kGIFTypeCode
-kHTMLCreatorCode
-kHTMLTypeCode
-kIllustratorCreatorCode
-kImageReadyCreatorCode
-kJPEGTypeCode
-kLocaleTypeCode
-kPDFTypeCode
-kPDXTypeCode
-kPICTTypeCode
-kPNGTypeCode
-kPSDTypeCode
-kPXDFTypeCode
-kPhotoshopCreatorCode
-kPluginNewTypeCode
-kPluginTypeCode
-kPowerPointCreatorCode
-kPrefsTypeCode
-kQuickTimeCreatorCode
-kQuickTimeTypeCode
-kRMFTypeCode
-kRTFTypeCode
-kSequenceTypeCode
-kTIFFTypeCode
-kTextCreatorCode
-kTextTypeCode
-kUnknownCreatorCode
-kUnknownTypeCode
-kWHATypeCode
-kWordCreatorCode
-kXDPTypeCode
-kXFDFTypeCode
-kXMLTypeCode
-ASFileSysFOptions
-ASDiskSpace
-ASDiskSpace64
-ASFileMode
-ASFileSys
-ASFileSysItemType
-ASFolderIterator
-ASIORequest
-ASPathName
-ASlFileMode
-ASlFileTypeCreator
-ASlFileTypeCreator
-ASFileSysAcquireFileSysPathProc
-ASFileSysAcquirePlatformPathProc
-ASFileSysAsyncAbortProc
-ASFileSysAsyncReadProc
-ASFileSysAsyncWriteProc
-ASFileSysCalledGetPathNameProc
-ASFileSysCanPerformOpOnItemProc
-ASFileSysCanSetEofProc
-ASFileSysClearOutstandingMReadsProc
-ASFileSysCloseProc
-ASFileSysCopyPathNameProc
-ASFileSysCreateFolderProc
-ASFileSysCreatePathNameProc
-ASFileSysDIPathFromPathExProc
-ASFileSysDestroyFolderIteratorProc
-ASFileSysDiPathFromPathProc
-ASFileSysDisplayASTextFromPathProc
-ASFileSysDisplayStringFromPathProc
-ASFileSysDisposePathNameProc
-ASFileSysFirstFolderItemProc
-ASFileSysFlushProc
-ASFileSysFlushVolumeProc
-ASFileSysGetEof64Proc
-ASFileSysGetEofProc
-ASFileSysGetFileFlags
-ASFileSysGetFilePositionLimitProc
-ASFileSysGetFileSysNameProc
-ASFileSysGetItemPropsAsCabProc
-ASFileSysGetItemPropsProc
-ASFileSysGetNameAsASTextProc
-ASFileSysGetNameForDisplayProc
-ASFileSysGetNameProc
-ASFileSysGetParentProc
-ASFileSysGetPlatformThingProc
-ASFileSysGetPos64Proc
-ASFileSysGetPosProc
-ASFileSysGetStatusProc
-ASFileSysGetStorageFreeSpace64Proc
-ASFileSysGetStorageFreeSpaceProc
-ASFileSysGetTempPathNameProc
-ASFileSysGetTypeAndCreatorProc
-ASFileSysHardFlushProc
-ASFileSysIsInUseProc
-ASFileSysIsSameFileProc
-ASFileSysMReadRequestProc
-ASFileSysNextFolderItemProc
-ASFileSysOpen64Proc
-ASFileSysOpenProc
-ASFileSysPathFromDIPathExProc
-ASFileSysPathFromDIPathProc
-ASFileSysPerformOpOnItemProc
-ASFileSysRangeArrivedProc
-ASFileSysReadProc
-ASFileSysReleasePlatformPathProc
-ASFileSysRemoveFolderProc
-ASFileSysRemoveProc
-ASFileSysRenameProc
-ASFileSysReopenProc
-ASFileSysSetEof64Proc
-ASFileSysSetEofProc
-ASFileSysSetModeProc
-ASFileSysSetPos64Proc
-ASFileSysSetPosProc
-ASFileSysSetTypeAndCreatorProc
-ASFileSysURLFromPathProc
-ASFileSysWriteProc
-ASFileSysYieldProc
-ASIODoneProc
-_t_ASFileSysItemProps
-_t_ASFileSysRec
-_t_ASIORequestRec
-ASFileSysAcquireFileSysPath
-ASFileSysAcquireParent
-ASFileSysAcquirePlatformPath
-ASFileSysCanPerformOpOnItem
-ASFileSysConvertCabToItemProps
-ASFileSysConvertItemPropsToCab
-ASFileSysCopyPath
-ASFileSysCreateFolder
-ASFileSysCreatePathName
-ASFileSysDIPathFromPath
-ASFileSysDIPathFromPathEx
-ASFileSysDestroyFolderIterator
-ASFileSysDisplayASTextFromPath
-ASFileSysDisplayStringFromPath
-ASFileSysFirstFolderItem
-ASFileSysFlushVolume
-ASFileSysGetFilePosLimit
-ASFileSysGetItemProps
-ASFileSysGetItemPropsAsCab
-ASFileSysGetNameFromPath
-ASFileSysGetNameFromPathAsASText
-ASFileSysGetNameFromPathForDisplay
-ASFileSysGetPlatformThing
-ASFileSysGetStorageFreeSpace
-ASFileSysGetStorageFreeSpace64
-ASFileSysGetTempPathName
-ASFileSysGetTypeAndCreator
-ASFileSysIsLocal
-ASFileSysNextFolderItem
-ASFileSysOpenFile
-ASFileSysOpenFile64
-ASFileSysPathFromDIPath
-ASFileSysPathFromDIPathEx
-ASFileSysPerformOpOnItem
-ASFileSysReleasePath
-ASFileSysReleasePlatformPath
-ASFileSysRemoveFile
-ASFileSysRemoveFolder
-ASFileSysSetTypeAndCreator
-ASFileSysURLFromPath
-ASGetDefaultFileSys
-ASGetDefaultFileSysForPath
-ASGetDefaultUnicodeFileSys
-ASGetRamFileSys
-ASGetTempFileSys
-ASRamFileSysSetLimitKB
-ASSetTempFileSys
-ASFixedNegInf
-ASFixedPosInf
-ASFixedRectIsEmptyRect
-ASFixedRoundToInt16
-ASFixedRoundToInt32
-ASFixedTruncToInt16
-ASFixedTruncToInt32
-ASInt16ToFixed
-ASInt32ToFixed
-ASUns16ToFixed
-FixedMatrix
-FixedMatrixP
-FixedPointP
-FixedQuad
-FixedQuadP
-FixedRectP
-FixedRoundToInt16
-FixedRoundToInt32
-FixedTruncToInt16
-FixedTruncToInt32
-FloatIToFixed
-FloatNToFixed
-Int16ToFixed
-Int32ToFixed
-fixedEight
-fixedEighth
-fixedEleven
-fixedFifty
-fixedFive
-fixedFiveHundred
-fixedFour
-fixedFourThirds
-fixedGolden
-fixedHalf
-fixedHundred
-fixedHundredFifty
-fixedHundredth
-fixedNegativeInfinity
-fixedNine
-fixedNinety
-fixedOne
-fixedOne1
-fixedOneAnd3Qtr
-fixedOneAndQuarter
-fixedOneEighty
-fixedPi2
-fixedPi4
-fixedPositiveInfinity
-fixedQuarter
-fixedSeven
-fixedSevenEighths
-fixedSeventyTwo
-fixedSix
-fixedSixteen
-fixedSixteenth
-fixedSqrtTwo
-fixedTen
-fixedTenThousand
-fixedTenth
-fixedThird
-fixedThirtyTwo
-fixedThousand
-fixedThree
-fixedThreeHalves
-fixedThreeQuarters
-fixedTwelfth
-fixedTwelve
-fixedTwo
-fixedTwoSeventy
-fixedTwoThirds
-fixedZero
-ASFixed
-_t_ASFixedMatrix
-_t_ASFixedPoint
-_t_ASFixedQuad
-_t_ASFixedRect
-ASCStringToFixed
-ASCStringToFixed
-ASFixedDiv
-ASFixedDiv
-ASFixedMatrixConcat
-ASFixedMatrixConcat
-ASFixedMatrixInvert
-ASFixedMatrixInvert
-ASFixedMatrixTransform
-ASFixedMatrixTransform
-ASFixedMatrixTransformRect
-ASFixedMatrixTransformRect
-ASFixedMul
-ASFixedMul
-ASFixedToCString
-ASFixedToCString
-ASFixedToFloat
-FloatToASFixed
-ASfree
-ASfree
-ASmalloc
-ASmalloc
-ASrealloc
-ASrealloc
-ASPlatformPath
-CFURLRefRec_Ptr
-CFURLRefRec_Ptr
-Cstring_Ptr
-FSRefWithCFStringRefRec_Ptr
-FSRefWithCFStringRefRec_Ptr
-FSRef_Ptr
-FSRef_Ptr
-FSSpec_Ptr
-FSSpec_Ptr
-POSIXPath_Ptr
-_t_CFURLRefRec
-_t_CFURLRefRecPlacebo
-_t_FSRefWithCFStringRefRec
-_t_FSRefWithCFStringRefRecPlacebo
-ASPathFromPlatformPath
-ASPlatformPathGetCFURLRefRecPtr
-ASPlatformPathGetCstringPtr
-ASPlatformPathGetFSRefPtr
-ASPlatformPathGetFSRefWithCFStringRefRecPtr
-ASPlatformPathGetFSSpecPtr
-ASPlatformPathGetPOSIXPathPtr
-ASSmallBufferSize
-ASStmRec
-ASProcStmDestroyProc
-ASProcStmGetLength
-ASProcStmSeekProc
-ASStmProc
-_s_ASProcStmRdExHandler
-ASMemStmRdOpen
-ASProcStmRdOpen
-ASProcStmRdOpenEx
-ASProcStmWrOpen
-ASStmClose
-ASStmFlush
-ASStmRead
-ASStmWrite
-ASScripts
-ASTextOptions
-ASConstText
-ASCountryCode
-ASHostEncoding
-ASLanguageCode
-ASScript
-ASText
-ASTextFilterType
-ASUTF16Val
-ASUTF32Val
-ASUTF8Val
-ASUniChar
-ASUnicodeChar
-ASUnicodeFormat
-ASTextEvalProc
-ASHostMBLen
-ASIsValidUTF8
-ASScriptFromHostEncoding
-ASScriptToHostEncoding
-ASTextCaseSensitiveCmp
-ASTextCat
-ASTextCatMany
-ASTextCmp
-ASTextCopy
-ASTextDestroy
-ASTextDup
-ASTextEval
-ASTextFilter
-ASTextFromEncoded
-ASTextFromInt32
-ASTextFromPDText
-ASTextFromScriptText
-ASTextFromSizedEncoded
-ASTextFromSizedPDText
-ASTextFromSizedScriptText
-ASTextFromSizedUnicode
-ASTextFromUnicode
-ASTextFromUns32
-ASTextGetBestEncoding
-ASTextGetBestScript
-ASTextGetCountry
-ASTextGetEncoded
-ASTextGetEncodedCopy
-ASTextGetLanguage
-ASTextGetPDTextCopy
-ASTextGetScriptText
-ASTextGetScriptTextCopy
-ASTextGetUnicode
-ASTextGetUnicodeCopy
-ASTextIsEmpty
-ASTextMakeEmpty
-ASTextMakeEmptyClear
-ASTextNew
-ASTextNormalizeEndOfLine
-ASTextReplace
-ASTextReplaceASCII
-ASTextReplaceBadChars
-ASTextSetCountry
-ASTextSetEncoded
-ASTextSetLanguage
-ASTextSetPDText
-ASTextSetScriptText
-ASTextSetSizedEncoded
-ASTextSetSizedPDText
-ASTextSetSizedScriptText
-ASTextSetSizedUnicode
-ASTextSetUnicode
-ASUCS_GetPasswordFromUnicode
-ASTimeSpan
-ASGetSecs
-ASTimeSpanAdd
-ASTimeSpanCompare
-ASTimeSpanCopy
-ASTimeSpanDestroy
-ASTimeSpanDiff
-ASTimeSpanDup
-ASTimeSpanGetASInt32
-ASTimeSpanNegate
-ASTimeSpanNew
-ASTimeSpanSet
-ASTimeSpanSetFromASInt32
-ASTimeSpanSetFromString
-ASUUIDMaxStringLen
-ASUUID
-ASUUIDFromCString
-ASUUIDGenFromHash
-ASUUIDGenFromName
-ASUUIDGenUnique
-ASUUIDToCString
-ASBoolToBool
-ASCryptStmModeError
-ASFourCharCode
-ASFourCharCode
-ASMAXInt16
-ASMAXInt32
-ASMAXInt64
-ASMAXInt8
-ASMAXUns16
-ASMAXUns32
-ASMAXUns64
-ASMAXUns8
-ASMINInt16
-ASMINInt32
-ASMINInt64
-ASMINInt8
-ASMINUns16
-ASMINUns32
-ASMINUns64
-ASMINUns8
-ASUSE_OBSOLETE_TYPES
-AS_ARCH_64BIT
-AS_ARCH_64BIT
-AS_UNUSED_PARAM
-AS_UNUSED_PARAM
-AS_UNUSED_VAR
-AS_UNUSED_VAR
-CHECKTYPE
-CHECKTYPE
-CHECK_CHARSTR
-CHECK_CHARSTR
-CancelProc
-FALSE
-HAS_32BIT_ATOMS
-HAS_32BIT_ATOMS
-HAS_BOOL_SUPPORT
-HAS_BOOL_SUPPORT
-HUGEPTRTYPE
-HugePtr
-Int16
-Int16P
-Int32
-Int32P
-Int8
-Int8P
-MAXInt16
-MAXInt32
-MAXInt8
-MAXUns16
-MAXUns32
-MAXUns8
-MINInt16
-MINInt32
-MINInt8
-MINUns16
-MINUns32
-MINUns8
-NULL
-NULL
-POINTER_64_BITS
-ProgressMonitor
-ProgressMonitorRec
-ProgressProc
-TRUE
-UNDEFINED_CONFIGURATION_SELECTOR
-Uns16
-Uns16P
-Uns32
-Uns32P
-Uns8
-Uns8P
-_open64_
-boolean
-false
-kASMAXEnum16
-kASMAXEnum16
-kASMAXEnum8
-kASMAXEnum8
-kMoreTextKey
-open64
-os_size_t
-true
-ASMungeOptions
-ASReportOptions
-ASTimeOptions
-ASValueOptions
-PDFLFlattenProgressMarker
-PDFLRenderProgressMarker
-UTFOptions
-ASArraySize
-ASBool
-ASByte
-ASByteCount
-ASCallback
-ASCoord
-ASCoord
-ASCount
-ASDuration
-ASEnum16
-ASEnum16
-ASEnum8
-ASEnum8
-ASFlagBits
-ASFract
-ASInt16
-ASInt32
-ASInt64
-ASInt8
-ASIntOrPtr
-ASMaskBits
-ASReportType
-ASSize_t
-ASSmallCount
-ASSmallCount
-ASTArraySize
-ASTArraySize
-ASTCount
-ASTCount
-ASTVersion
-ASTVersion
-ASUns16
-ASUns32
-ASUns64
-ASUns8
-ASUnsOrPtr
-OPAQUE_32_BITS
-ASCancelProc
-ASProgressProc
-ASReportProc
-PMBeginOperationProc
-PMEndOperationProc
-PMGetCurrValueProc
-PMGetDurationProc
-PMSetCurrValueProc
-PMSetDurationProc
-PMSetTextProc
-OPAQUE_64_BITS
-_t_ASStatusMonitorProcs
-_t_ProgressMonitor
-_t_Quad
-ASDebug
-BAD_SELECTOR
-HFTEntryReplaceable
-HFT_ERROR_NO_VERSION
-kHFT_IN_BETA_FLAG
-ASVersion
-HFT
-HFTData
-HFTEntry
-Selector
-HFTServerProvideHFTProc
-_t_HFTData
-HFTDestroy
-HFTGetReplacedEntry
-HFTGetVersion
-HFTIsValid
-HFTNew
-HFTNewEx
-HFTReplaceEntry
-HFTReplaceEntryEx
-HFTUnreplaceEntry
-HFTServer
-HFTServerDestroyProc
-HFTServerDestroy
-HFTServerNew
-CosArrayGet
-CosArrayInsert
-CosArrayIsWeakReference
-CosArrayLength
-CosArrayPut
-CosArrayRemove
-CosArrayRemoveNth
-CosArraySetWeakReference
-CosNewArray
-CosBooleanValue
-CosNewBoolean
-CosCryptVersion
-CosCryptStringProc
-CosCryptGetVersion
-CosDecryptData
-CosDecryptGetMaxKeyBytes
-CosEncryptData
-CosEncryptGetMaxKeyBytes
-CosDictGet
-CosDictGetKey
-CosDictGetKeyString
-CosDictIsWeakReference
-CosDictKnown
-CosDictKnownKey
-CosDictKnownKeyString
-CosDictPut
-CosDictPutKey
-CosDictPutKeyString
-CosDictRemove
-CosDictRemoveKey
-CosDictRemoveKeyString
-CosDictSetWeakReference
-CosNewDict
-cosDocCreateInfoDict
-cosSaveBinaryOK
-cosSaveConcealObjStreams
-cosSaveCopy
-cosSaveFullSave
-cosSaveGarbageCollect
-kCosDocOpenDoRepair
-CosByte
-CosDoc
-CosDocSaveFlags
-CosDocEnumEOFsProc
-CosDocEnumEOFsProc64
-_t_CosDocOpenParams
-_t_CosDocSaveParams
-CosDocClose
-CosDocCreate
-CosDocEnumEOFs
-CosDocEnumEOFs64
-CosDocEnumIndirect
-CosDocGetAdobeExtensionLevel
-CosDocGetID
-CosDocGetInfoDict
-CosDocGetObjByID
-CosDocGetRoot
-CosDocHasFullCompression
-CosDocHasISOExtensions
-CosDocHasPartialCompression
-CosDocObjIsWithinRange
-CosDocObjIsWithinRange64
-CosDocOpenWithParams
-CosDocSaveToFile
-CosDocSaveWithParams
-CosDocSetAdobeExtensionLevel
-CosDocSetDirty
-CosSetMaxDocStorage
-CosCopyNameStringValue
-CosNameValue
-CosNewName
-CosNewNameFromString
-CosDoubleValue
-CosFixedValue
-CosFloatValue
-CosInteger64Value
-CosIntegerValue
-CosNewDouble
-CosNewDoubleEx
-CosNewFixed
-CosNewFloat
-CosNewInteger
-CosNewInteger64
-CosNumberIsWithinASFixedRange
-CosNumberIsWithinASInt32Range
-CosGeneration
-CosHashCode
-CosID
-CosObj
-CosType
-CosObjEnumProc
-CosObjOffsetProc
-CosObjOffsetProc64
-CosObjSetCallbackFlagProc
-CosNewNull
-CosObjAcquire
-CosObjCmp
-CosObjCopy
-CosObjDestroy
-CosObjEnum
-CosObjEqual
-CosObjGetCompressibility
-CosObjGetDoc
-CosObjGetGeneration
-CosObjGetID
-CosObjGetType
-CosObjHash
-CosObjIsCompressed
-CosObjIsIndirect
-CosObjRefreshAfterLinearizedSave
-CosObjRelease
-CosObjSetCompressibility
-CosObjCollection
-CosNewObjCollection
-CosObjAddToCollection
-CosObjCollectionEnum
-CosObjCollectionEqual
-CosObjCollectionIsNull
-CosObjCollectionSize
-CosObjGetCollection
-CosObjRemoveFromCollection
-CosByteMax
-CosStreamOpenMode
-CosStreamStartAndCode
-CosNewStream
-CosNewStream64
-CosStreamDict
-CosStreamLength
-CosStreamLength64
-CosStreamOpenStm
-CosStreamPos
-CosStreamPos64
-CosCopyStringValue
-CosNewString
-CosStringGetHexFlag
-CosStringSetHexFlag
-CosStringValue
-CosStringValueSafe
-CosOptions
-cosOpenOptions
-AdobePDFVersion
-ASFileAttachmentCreatePathName
-ASFileAttachmentGetPDFileAttachment
-ASFileAttachmentGetPDFolder
-MAX_PWCHARS
-_BASIC_EXP_T_
-kPDEmitEasternTileMarks
-kPDEmitNoMarks
-kPDEmitSlug
-kPDEmitWesternTileMarks
-HSEmitFonts
-InkTypes
-PDCharSets
-PDColorSpaces
-PDEContentAddPageFlags
-PDEndStyles
-PDFindFlagTypes
-PDHorizAlignments
-PDInsertFlags
-PDJoinStyles
-PDPathPaintOps
-PDPathSegmentOps
-PDPlacementOptions
-PlateSeparationOptions
-marksStyles
-PDColorSpace
-PDConstColorValue
-PDContent
-PDCount
-PDEndStyle
-PDFind
-PDFindFlags
-PDGraphicEnumMonitor
-PDHorizAlign
-PDImageScalar
-PDJoinStyle
-PDOperation
-PDPathEnumMonitor
-PDPathPaintOp
-PDPathSegmentOp
-PDPlacementTypes
-PDResourceEnumMonitor
-PDXObject
-_t_PDGraphic
-PDFindTranslateStringProc
-PDGetDataProc
-PDGraphicEnumCacheDeviceProc
-PDGraphicEnumCharWidthProc
-PDGraphicEnumImageProc
-PDGraphicEnumPathProc
-PDGraphicEnumRestoreProc
-PDGraphicEnumSaveProc
-PDGraphicEnumTextProc
-PDGraphicEnumXObjectRefMatrixProc
-PDGraphicEnumXObjectRefProc
-PDImplicitMetadataProc
-PDPathClosePathProc
-PDPathCurveToProc
-PDPathLineToProc
-PDPathMoveToProc
-PDPathRectProc
-PDPathVCurveToProc
-PDPathYCurveToProc
-PDResourceEnumColorSpaceProc
-PDResourceEnumFontProc
-PDResourceEnumProcSetProc
-PDResourceEnumXObjectProc
-PDStringEnumProc
-PDXObjectFilterEnumProc
-PDTrapPreset
-_t_PDChromaticity
-_t_PDColorValueRec
-_t_PDDrawParams
-_t_PDGraphicEnumMonitor
-_t_PDGraphicEnumParams
-_t_PDGraphicState
-_t_PDImageAttrs
-_t_PDPathEnumMonitor
-_t_PDResourceEnumMonitor
-_t_PDTextState
-PDApplyFunction
-PDApplyFunctionEx
-PDDrawCosObjToWindow
-PDDrawCosObjWithParams
-PDFormEnumPaintProcWithParams
-PDImageSelAdjustMatrix
-PDImageSelGetDeviceAttr
-PDImageSelGetGeoAttr
-PDSetHostEncoding
-CosDictXAPMetadataDidChangeProc
-PDDocXAPMetadataDidChangeProc
-PDEContainerXAPMetadataDidChangeProc
-CosDictGetXAPMetadata
-CosDictSetXAPMetadata
-PDDocCountXAPMetadataArrayItems
-PDDocGetInfo
-PDDocGetInfoASText
-PDDocGetMergedXAPKeywords
-PDDocGetXAPMetadata
-PDDocGetXAPMetadataArrayItem
-PDDocGetXAPMetadataProperty
-PDDocMergeXAPKeywords
-PDDocSetInfo
-PDDocSetInfoAsASText
-PDDocSetXAPMetadata
-PDDocSetXAPMetadataArrayItem
-PDDocSetXAPMetadataProperty
-PDEContainerGetXAPMetadata
-PDEContainerSetXAPMetadata
-PDAction
-PDActionClipboardData
-PDActionCanCopy
-PDActionCanPaste
-PDActionCopy
-PDActionDestroy
-PDActionDestroyClipboardData
-PDActionEqual
-PDActionFromCosObj
-PDActionGetCosObj
-PDActionGetDest
-PDActionGetFileSpec
-PDActionGetSubtype
-PDActionIsValid
-PDActionNew
-PDActionNewFromDest
-PDActionNewFromFileSpec
-PDActionPaste
-PDActionHandler
-PDActionHandlerData
-PDActionHandlerCanCopyProc
-PDActionHandlerCanPasteProc
-PDActionHandlerCopyProc
-PDActionHandlerDestroyDataProc
-PDActionHandlerDestroyProc
-PDActionHandlerGetTypeProc
-PDActionHandlerPasteProc
-_t_PDActionHandler
-PDRegisterActionHandler
-CastToPDAnnot
-PDAnnotIgnorePerms
-PDAnnotInfoInit
-PDAnnotMaxDashes
-PDAnnotOperationAll
-PDAnnotOperationFilter
-PDAnnotOperationFlatten
-PDAnnotOperationManager
-PDAnnotOperationSummarize
-pdAnnotHidden
-pdAnnotInvisible
-pdAnnotLock
-pdAnnotLockContents
-pdAnnotNoRotate
-pdAnnotNoView
-pdAnnotNoZoom
-pdAnnotPrint
-pdAnnotReadOnly
-pdAnnotSequenceAdjust
-pdAnnotToggleNoView
-PDAnnotPrintOps
-PDAnnot
-PDAnnotClipboardData
-PDAnnotPrintOp
-PDAnnotWillPrintProc
-_PDAnnotInfoRec
-PDAnnotCanCopy
-PDAnnotCanPaste
-PDAnnotCopy
-PDAnnotDestroyClipboardData
-PDAnnotEqual
-PDAnnotFromCosObj
-PDAnnotGetColor
-PDAnnotGetCosObj
-PDAnnotGetDate
-PDAnnotGetFlags
-PDAnnotGetOCMD
-PDAnnotGetRect
-PDAnnotGetSubtype
-PDAnnotGetTitle
-PDAnnotGetTitleASText
-PDAnnotIsCurrentlyVisible
-PDAnnotIsValid
-PDAnnotNotifyDidChange
-PDAnnotNotifyWillChange
-PDAnnotPaste
-PDAnnotRemoveOCMD
-PDAnnotSetColor
-PDAnnotSetDate
-PDAnnotSetFlags
-PDAnnotSetOCMD
-PDAnnotSetRect
-PDAnnotSetTitle
-PDAnnotSetTitleASText
-PDAnnotHandler
-PDAnnotHandlerClipboardData
-PDAnnotHandlerCanCopyProc
-PDAnnotHandlerCanPasteProc
-PDAnnotHandlerCopyProc
-PDAnnotHandlerDeleteAnnotInfoProc
-PDAnnotHandlerDestroyDataProc
-PDAnnotHandlerDestroyProc
-PDAnnotHandlerGetAnnotInfoFlagsProc
-PDAnnotHandlerGetAnnotInfoProc
-PDAnnotHandlerGetHeelPointProc
-PDAnnotHandlerGetPrintAppearanceProc
-PDAnnotHandlerGetTypeProc
-PDAnnotHandlerPasteProc
-_t_PDAnnotHandler
-PDGetAnnotHandlerByName
-PDRegisterAnnotHandler
-PDBead
-PDBeadAcquirePage
-PDBeadDestroy
-PDBeadEqual
-PDBeadFromCosObj
-PDBeadGetCosObj
-PDBeadGetIndex
-PDBeadGetNext
-PDBeadGetPrev
-PDBeadGetRect
-PDBeadGetThread
-PDBeadInsert
-PDBeadIsValid
-PDBeadNew
-PDBeadSetPage
-PDBeadSetRect
-PDBookmarkFontOptions
-PDBookmark
-PDBookmarkFlags
-PDBookmarkAddChild
-PDBookmarkAddNewChild
-PDBookmarkAddNewChildASText
-PDBookmarkAddNewSibling
-PDBookmarkAddNewSiblingASText
-PDBookmarkAddNext
-PDBookmarkAddPrev
-PDBookmarkAddSubtree
-PDBookmarkAddSubtreeASText
-PDBookmarkDestroy
-PDBookmarkEqual
-PDBookmarkFromCosObj
-PDBookmarkGetAction
-PDBookmarkGetByTitle
-PDBookmarkGetByTitleASText
-PDBookmarkGetColor
-PDBookmarkGetCosObj
-PDBookmarkGetCount
-PDBookmarkGetFirstChild
-PDBookmarkGetFlags
-PDBookmarkGetIndent
-PDBookmarkGetLastChild
-PDBookmarkGetNext
-PDBookmarkGetParent
-PDBookmarkGetPrev
-PDBookmarkGetTitle
-PDBookmarkGetTitleASText
-PDBookmarkHasChildren
-PDBookmarkIsOpen
-PDBookmarkIsValid
-PDBookmarkRemoveAction
-PDBookmarkSetAction
-PDBookmarkSetColor
-PDBookmarkSetFlags
-PDBookmarkSetOpen
-PDBookmarkSetTitle
-PDBookmarkSetTitleASText
-PDBookmarkUnlink
-PDCollectionSplitTypes
-PDCollectionViewTypes
-PDCollection
-PDCollectionSplitType
-PDCollectionViewType
-PDNavigator
-_t_PDCollectionField
-_t_PDCollectionSchemaSortPair
-_t_PDCollectionViewDataRec
-PDCollectionCreateFolder
-PDCollectionGetFolder
-PDCollectionGetInitialStyle
-PDCollectionGetSortOrder
-PDCollectionGetViewData
-PDCollectionIsValid
-PDCollectionRemoveFolder
-PDCollectionRemoveInitialStyle
-PDCollectionSetInitialStyle
-PDCollectionSetSortOrder
-PDCollectionSetViewData
-PDCollectionSchema
-PDCollectionSchemaAcquire
-PDCollectionSchemaDestroy
-PDCollectionSchemaGetField
-PDCollectionSchemaGetLength
-PDCollectionSchemaRemoveField
-PDCollectionSchemaSetField
-PDCryptFilterStringProc
-GCHTextType
-PDCryptBatchHandler
-PDCryptFilterHandler
-PDCryptHandler
-PDCryptAuthorizeExProc
-PDCryptAuthorizeProc
-PDCryptBatchAuthorizeProc
-PDCryptBatchFreeAuthDataProc
-PDCryptBatchNewAuthDataProc
-PDCryptBatchParamDescProc
-PDCryptBatchPostSequenceProc
-PDCryptBatchPreSequenceProc
-PDCryptBatchShowDialogProc
-PDCryptBatchUpdateSecurityDataProc
-PDCryptCanParseEncryptDictProc
-PDCryptDisplaySecurityDataProc
-PDCryptEncryptDocMetadata
-PDCryptFillEncryptDictProc
-PDCryptFilterAuthorizeProc
-PDCryptFilterGetDataProc
-PDCryptFilterStreamProc
-PDCryptFreeAuthDataProc
-PDCryptFreeCryptDataProc
-PDCryptFreeSecurityDataProc
-PDCryptGetAuthDataExProc
-PDCryptGetAuthDataProc
-PDCryptGetDocPermsProc
-PDCryptGetInfoTextProc
-PDCryptGetSecurityInfoProc
-PDCryptNewAuthDataProc
-PDCryptNewCryptDataExProc
-PDCryptNewCryptDataProc
-PDCryptNewSecurityDataFromOriginalDocProc
-PDCryptNewSecurityDataProc
-PDCryptReservedProc
-PDCryptReservedProc2
-PDCryptUpdateSecurityDataProc
-PDCryptValidateSecurityDataProc
-_t_PDCryptBatchHandler
-_t_PDCryptFilterHandler
-_t_PDCryptHandler
-PDCryptAuthorizeFilterAccess
-PDRegisterCryptHandler
-PDRegisterCryptHandlerEx
-PDPermReqDenied
-PDPermReqGranted
-PDPermReqOperationNA
-PDPermReqPending
-PDPermReqUnknownObject
-PDPermReqUnknownOperation
-PDPermReqVersion
-STDSEC_CryptRevision1
-STDSEC_CryptRevision2
-STDSEC_CryptRevision3
-STDSEC_CryptRevision4
-STDSEC_CryptRevision5
-STDSEC_CryptRevision6
-STDSEC_CryptVersionV1
-STDSEC_CryptVersionV2
-STDSEC_CryptVersionV3
-STDSEC_CryptVersionV4
-STDSEC_CryptVersionV5
-STDSEC_KEYLENGTH_AES128
-STDSEC_KEYLENGTH_AES256
-STDSEC_KEYLENGTH_RC4_V1
-STDSEC_KEYLENGTH_RC4_V2
-STDSEC_METHOD_AES_V1
-STDSEC_METHOD_AES_V2
-STDSEC_METHOD_AES_V3
-STDSEC_METHOD_RC4_V2
-kPDDocReadAheadAcroForms
-kPDDocReadAheadPageLabels
-kPDDocReadAheadRenditions
-kPDDocReadAheadStructure
-kPDDocReadAheadTemplates
-pdInfoCanCopy
-pdInfoCanEdit
-pdInfoCanEditNotes
-pdInfoCanPrint
-pdInfoHasOwnerPW
-pdInfoHasUserPW
-pdOpAddResource
-pdOpRemoveResource
-pdPermAll
-pdPermCopy
-pdPermEdit
-pdPermEditNotes
-pdPermExt
-pdPermOpen
-pdPermOwner
-pdPermPrint
-pdPermSaveAs
-pdPermSecure
-pdPermSettable
-pdPermUser
-pdPrivPermAccessible
-pdPrivPermDocAssembly
-pdPrivPermFillandSign
-pdPrivPermFormSpawnTempl
-pdPrivPermFormSubmit
-pdPrivPermHighPrint
-PDDocOCChangeTypes
-PDDocOptions
-PDDocRequestReasons
-PDDocSaveFlags
-PDDocSaveFlags2
-PDLayoutModes
-PDOperations
-PDPermReqObjOptions
-PDPermReqOprOptions
-PDVertAlignments
-PDWatermarkOptions
-PDDoc
-PDDocFlags
-PDDocInsertPagesParams
-PDDocOCChangeType
-PDDocOpenParams
-PDDocRequestReason
-PDDocSaveParams
-PDDocVersion
-PDLayoutMode
-PDPermReqObj
-PDPermReqOpr
-PDPermReqStatus
-PDPerms
-PDPrintWhat
-PDSaveFlags
-PDSaveFlags2
-PDSmallFlagBits
-PDVertAlign
-PDWatermarkDrawOption
-StdPassword
-PDAuthProc
-PDAuthProcEx
-PDDocEnumProc
-PDDocPreSaveProc
-PDDocPreWriteProc
-PDDocRequestEntireFileProc
-PDDocRequestPagesProc
-PDDocWillExportAnnotCallback
-PDDocWillExportAnnotProc
-PDDocWillImportAnnotCallback
-PDDocWillImportAnnotProc
-_s_PDAnnotArray
-_t_PDApplyRedactionParams
-_t_PDDocAddWatermarkParams
-_t_PDDocCopyParams
-_t_PDDocInsertPagesParams
-_t_PDDocOpenParams
-_t_PDDocPreSaveInfo
-_t_PDDocSaveParams
-_t_PDDocWatermarkTextParams
-_t_StdSecurityData
-PDDocAcquire
-PDDocAcquirePage
-PDDocAddJobID
-PDDocAddThread
-PDDocAddWatermarkFromPDPage
-PDDocAddWatermarkFromText
-PDDocApplyRedactions
-PDDocAuthorize
-PDDocCalculateImplicitMetadata
-PDDocClearErrors
-PDDocClearFlags
-PDDocClose
-PDDocCopyToFile
-PDDocCreate
-PDDocCreateNameTree
-PDDocCreatePDCollection
-PDDocCreatePage
-PDDocCreateRedaction
-PDDocCreateTextSelect
-PDDocCreateTextSelectUCS
-PDDocCreateThumbs
-PDDocCreateWordFinder
-PDDocCreateWordFinderEx
-PDDocCreateWordFinderUCS
-PDDocDeleteCollection
-PDDocDeletePages
-PDDocDeleteThumbs
-PDDocEnumFonts
-PDDocEnumLoadedFonts
-PDDocEnumOCConfigs
-PDDocEnumOCGs
-PDDocEnumResources
-PDDocExportNotes
-PDDocExportSomeNotes
-PDDocFindPageNumForLabel
-PDDocFindPageNumForLabelEx
-PDDocFlattenOC
-PDDocFromCosDoc
-PDDocGetAdobePDFVersion
-PDDocGetBookmarkRoot
-PDDocGetCosDoc
-PDDocGetCryptHandler
-PDDocGetCryptHandlerClientData
-PDDocGetCryptRevision
-PDDocGetCryptVersion
-PDDocGetFile
-PDDocGetFlags
-PDDocGetFullScreen
-PDDocGetID
-PDDocGetLabelForPageNum
-PDDocGetLabelForPageNumEx
-PDDocGetLayoutMode
-PDDocGetNameTree
-PDDocGetNewCryptHandler
-PDDocGetNewSecurityData
-PDDocGetNewSecurityInfo
-PDDocGetNthError
-PDDocGetNumErrors
-PDDocGetNumOCGs
-PDDocGetNumPages
-PDDocGetNumThreads
-PDDocGetOCConfig
-PDDocGetOCContext
-PDDocGetOCGs
-PDDocGetOpenAction
-PDDocGetPDCollection
-PDDocGetPageLabel
-PDDocGetPageMode
-PDDocGetPageObjByNum
-PDDocGetPermissions
-PDDocGetSecurityData
-PDDocGetThread
-PDDocGetThreadIndex
-PDDocGetTrapped
-PDDocGetVersion
-PDDocGetVersionEx
-PDDocGetWordFinder
-PDDocHasISOExtensions
-PDDocHasOC
-PDDocImportCosDocNotes
-PDDocImportNotes
-PDDocInsertPages
-PDDocMovePage
-PDDocNewSecurityData
-PDDocOpen
-PDDocOpenEx
-PDDocOpenFromASFile
-PDDocOpenFromASFileEx
-PDDocOpenWithParams
-PDDocPermRequest
-PDDocPermRequestNoUB
-PDDocReadAhead
-PDDocReadAheadEmbeddedFile
-PDDocReadAheadPages
-PDDocRelease
-PDDocRemoveNameTree
-PDDocRemoveOpenAction
-PDDocRemovePageLabel
-PDDocRemoveThread
-PDDocReplaceOCG
-PDDocReplacePages
-PDDocRequestEntireFile
-PDDocRequestPages
-PDDocResetInkUsage
-PDDocSave
-PDDocSaveWithParams
-PDDocSetAdobePDFVersion
-PDDocSetFlags
-PDDocSetFullScreen
-PDDocSetLayoutMode
-PDDocSetMinorVersion
-PDDocSetNewCryptFilterData
-PDDocSetNewCryptFilterMethod
-PDDocSetNewCryptHandler
-PDDocSetNewCryptHandlerEx
-PDDocSetNewDefaultFilters
-PDDocSetNewSecurityData
-PDDocSetOpenAction
-PDDocSetPageLabel
-PDDocSetPageMode
-PDDocSetTrapped
-PDEnumDocs
-PDPrintWhat_Options
-PDTile
-PDFileAttachment
-PDFileAttachmentFromCosObj
-PDFileAttachmentGetCosObj
-PDFileAttachmentGetCreationDate
-PDFileAttachmentGetFieldDate
-PDFileAttachmentGetFieldNumber
-PDFileAttachmentGetFieldPrefix
-PDFileAttachmentGetFieldStyle
-PDFileAttachmentGetFieldStyledText
-PDFileAttachmentGetFieldText
-PDFileAttachmentGetFileName
-PDFileAttachmentGetFileSize
-PDFileAttachmentGetModDate
-PDFileAttachmentIsValid
-PDFileAttachmentNewFromFile
-PDFileAttachmentOpenStream
-PDFileAttachmentSaveToFile
-PDFileAttachmentSetFieldDate
-PDFileAttachmentSetFieldNumber
-PDFileAttachmentSetFieldPrefix
-PDFileAttachmentSetFieldStyle
-PDFileAttachmentSetFieldStyledText
-PDFileAttachmentSetFieldText
-PDFileAttachmentUpdateFromFile
-PDFileSpec
-PDFileSpecAcquireASPathProc
-PDFileSpecNewFromASPathProc
-PDLaunchActionProc
-_t_PDFileSpecHandler
-PDFileSpecAcquireASPath
-PDFileSpecAcquireASPathEx
-PDFileSpecFromCosObj
-PDFileSpecGetCosObj
-PDFileSpecGetDIPath
-PDFileSpecGetDIPathEx
-PDFileSpecGetDoc
-PDFileSpecGetFileSys
-PDFileSpecGetFileSysName
-PDFileSpecIsValid
-PDFileSpecNewFromASPath
-PDFileSpecNewFromASPathEx
-PDRegisterFileSpecHandler
-PDRegisterFileSpecHandlerByName
-PDFolder
-PDFolderGetCreationDate
-PDFolderGetDescription
-PDFolderGetDescriptionStyled
-PDFolderGetFieldDate
-PDFolderGetFieldNumber
-PDFolderGetFieldStyle
-PDFolderGetFieldStyledText
-PDFolderGetFieldText
-PDFolderGetFirstChild
-PDFolderGetID
-PDFolderGetModDate
-PDFolderGetName
-PDFolderGetNextSibling
-PDFolderGetParent
-PDFolderGetPathText
-PDFolderIsValid
-PDFolderSetCreationDate
-PDFolderSetDescription
-PDFolderSetDescriptionStyled
-PDFolderSetFieldDate
-PDFolderSetFieldNumber
-PDFolderSetFieldStyle
-PDFolderSetFieldStyledText
-PDFolderSetFieldText
-PDFolderSetModDate
-PDFolderSetName
-PDFolderSetParent
-PDFONTFLAGS_USEDBYFORM
-PDLastOneByteEncoding
-PDUnicodeEncoding
-PD_ALL_CAP
-PD_FIXED_WIDTH
-PD_FORCE_BOLD
-PD_ITALIC
-PD_PI
-PD_SCRIPT
-PD_SEGASCII
-PD_SEGBINARY
-PD_SEGEOF
-PD_SERIF
-PD_SMALL_CAP
-PD_STD_ENCODING
-PSNAMESIZE
-PDFontEncodings
-PDCharProc
-PDCharSet
-PDFont
-PDFontAngle
-PDFontEncoding
-PDFontMetric
-PDFontOffset
-PDiFontMetric
-PDCharProcEnumProc
-PDFontEnumProc
-_t_PDFontFlags
-_t_PDFontMetrics
-_t_PDFontStyles
-PDCharProcEnumWithParams
-PDFontAcquireEncodingArray
-PDFontAcquireEncodingArrayFull
-PDFontAcquireXlateTable
-PDFontEncodingArrayRelease
-PDFontFromCosObj
-PDFontGetASTextName
-PDFontGetBBox
-PDFontGetCIDSystemInfo
-PDFontGetCIDSystemSupplement
-PDFontGetCharSet
-PDFontGetCosObj
-PDFontGetDescendant
-PDFontGetEncodingIndex
-PDFontGetEncodingName
-PDFontGetMetrics
-PDFontGetName
-PDFontGetSubtype
-PDFontGetWidths
-PDFontIsEmbedded
-PDFontSetMetrics
-PDFontXlateString
-PDFontXlateTableRelease
-PDFontXlateToHost
-PDFontXlateToUCS
-PDFontXlateWidths
-PDGetHostEncoding
-PDGetPDFDocEncoding
-PDHostMBLen
-PDXlateToASText
-PDXlateToHost
-PDXlateToHostASText
-PDXlateToHostEx
-PDXlateToPDFDocEnc
-PDXlateToPDFDocEncEx
-CastToPDLinkAnnot
-PDLinkAnnot
-_t_PDLinkAnnotBorder
-PDLinkAnnotGetAction
-PDLinkAnnotGetBorder
-PDLinkAnnotRemoveAction
-PDLinkAnnotSetAction
-PDLinkAnnotSetBorder
-PDNameTree
-PDNameTreeEnum
-PDNameTreeEqual
-PDNameTreeFromCosObj
-PDNameTreeGet
-PDNameTreeGetCosObj
-PDNameTreeIsValid
-PDNameTreeLookup
-PDNameTreeNew
-PDNameTreeNotifyNameAdded
-PDNameTreeNotifyNameRemoved
-PDNameTreePut
-PDNameTreeRemove
-PDNumTree
-PDNumTreeEnum
-PDNumTreeEqual
-PDNumTreeFromCosObj
-PDNumTreeGet
-PDNumTreeGetCosObj
-PDNumTreeIsValid
-PDNumTreeNew
-PDNumTreePut
-PDNumTreeRemove
-PDOCConfigBaseStates
-PDOCConfig
-PDOCConfigBaseState
-PDOCConfigEnumProc
-PDOCConfigCreate
-PDOCConfigDestroy
-PDOCConfigGetAllRadioButtonGroups
-PDOCConfigGetCosObj
-PDOCConfigGetCreator
-PDOCConfigGetInitState
-PDOCConfigGetIntent
-PDOCConfigGetLockedArray
-PDOCConfigGetName
-PDOCConfigGetOCGOrder
-PDOCConfigGetPDDoc
-PDOCConfigGetRadioButtonGroupForOCG
-PDOCConfigMakeRadioButtonGroup
-PDOCConfigSetCreator
-PDOCConfigSetInitState
-PDOCConfigSetIntent
-PDOCConfigSetLockedArray
-PDOCConfigSetName
-PDOCConfigSetOCGOrder
-PDOCContextChangeTypes
-PDOCContextInitPolicies
-PDOCDrawEnumTypes
-PDOCContext
-PDOCContextChangeType
-PDOCContextInitPolicy
-PDOCDrawEnumType
-PDOCContextApplyAutoStateChanges
-PDOCContextClearAllUserOverrides
-PDOCContextContentIsVisible
-PDOCContextFindAutoStateChanges
-PDOCContextFree
-PDOCContextGetIntent
-PDOCContextGetNonOCDrawing
-PDOCContextGetOCDrawEnumType
-PDOCContextGetOCGStates
-PDOCContextGetPDDoc
-PDOCContextInit
-PDOCContextMakeCopy
-PDOCContextMakeCopyWithAutoStateChanges
-PDOCContextNew
-PDOCContextNewWithInitialState
-PDOCContextNewWithOCDisabled
-PDOCContextPopOCMD
-PDOCContextPushOCMD
-PDOCContextResetOCMDStack
-PDOCContextSetIntent
-PDOCContextSetNonOCDrawing
-PDOCContextSetOCDrawEnumType
-PDOCContextSetOCGStates
-PDOCContextXObjectIsVisible
-PDOCG
-PDOCGEnumProc
-PDOCGCreate
-PDOCGCreateFromCosObj
-PDOCGDestroy
-PDOCGGetCosObj
-PDOCGGetCurrentState
-PDOCGGetFromCosObj
-PDOCGGetInitialState
-PDOCGGetIntent
-PDOCGGetLocked
-PDOCGGetName
-PDOCGGetPDDoc
-PDOCGGetUsageEntry
-PDOCGGetUserOverride
-PDOCGHasUsageInfo
-PDOCGRemoveInitialState
-PDOCGSetCurrentState
-PDOCGSetInitialState
-PDOCGSetIntent
-PDOCGSetLocked
-PDOCGSetName
-PDOCGSetUsageDictEntry
-PDOCGSetUserOverride
-PDOCGUsedInOCConfig
-PDOCGUsedInOCContext
-PDOCMDVisPolicies
-PDOCMD
-PDOCMDVisPolicy
-PDOCMDCreate
-PDOCMDFindOrCreate
-PDOCMDFindOrCreateEx
-PDOCMDGetCosObj
-PDOCMDGetFromCosObj
-PDOCMDGetOCGs
-PDOCMDGetPDDoc
-PDOCMDGetVisPolicy
-PDOCMDGetVisibilityExpression
-PDOCMDIsCurrentlyVisible
-PDOCMDsAreCurrentlyVisible
-PDOCMDsMakeContentVisible
-PDAllPages
-PDBeforeFirstPage
-PDEvenPagesOnly
-PDLastPage
-PDOddPagesOnly
-kPDPageStmSkipComments
-kPDPageStmStringMax
-kPDPageStmTokenHexString
-PDPageAreas
-PDPageDrawFlagsPIs
-PDPageModes
-PDPageRotation
-PDPage
-PDPageArea
-PDPageDrawFlagsPI
-PDPageMode
-PDPageNumber
-PDRotate
-PDPageEnumInksCallback
-PDPageStmImageDataProc
-PDPageStmStringOverflowProc
-_t_PDHostSepsPlateRec
-_t_PDHostSepsSpecRec
-_t_PDPageInkRec
-_t_PDPageRange
-_t_PDPageRange
-_t_PDPageStmToken
-PDPageAcquirePDEContent
-PDPageAcquirePage
-PDPageAddAnnot
-PDPageAddCosContents
-PDPageAddCosResource
-PDPageAddNewAnnot
-PDPageCreateAnnot
-PDPageDrawContentsToWindow
-PDPageDrawContentsToWindowEx
-PDPageDrawContentsToWindowEx2
-PDPageDrawContentsWithParams
-PDPageEnumInks
-PDPageEnumInksEx
-PDPageEnumOCGs
-PDPageFlattenOC
-PDPageGetAnnot
-PDPageGetAnnotIndex
-PDPageGetAnnotSequence
-PDPageGetBBox
-PDPageGetBox
-PDPageGetCosObj
-PDPageGetCosResources
-PDPageGetCropBox
-PDPageGetDefaultMatrix
-PDPageGetDoc
-PDPageGetDuration
-PDPageGetFlippedMatrix
-PDPageGetMediaBox
-PDPageGetNumAnnots
-PDPageGetNumber
-PDPageGetOCGs
-PDPageGetPDEContentFilters
-PDPageGetPDEContentFlags
-PDPageGetPalette
-PDPageGetRotate
-PDPageGetTransition
-PDPageGetUserUnitSize
-PDPageGetVisibleBBox
-PDPageHasOverprintExt
-PDPageHasTransition
-PDPageHasTransparency
-PDPageMakeSeparations
-PDPageNotifyContentsDidChange
-PDPageNotifyContentsDidChangeEx
-PDPageNumFromCosObj
-PDPagePDEContentWasChanged
-PDPageRegisterForPDEContentChanged
-PDPageRegisterForPDEContentNotCached
-PDPageRelease
-PDPageReleasePDEContent
-PDPageRemoveAnnot
-PDPageRemoveCosContents
-PDPageRemoveCosResource
-PDPageResumePDEContentChanged
-PDPageSetBox
-PDPageSetCropBox
-PDPageSetDuration
-PDPageSetMediaBox
-PDPageSetPDEContent
-PDPageSetPDEContentCanRaise
-PDPageSetPDEContentFilters
-PDPageSetPDEContentFlags
-PDPageSetRotate
-PDPageSetTransition
-PDPageSetUserUnitSize
-PDPageStmGetInlineImage
-PDPageStmGetToken
-PDPageSuspendPDEContentChanged
-PDPageUnRegisterForPDEContentChanged
-PDPageUnRegisterForPDEContentNotCached
-PDPageLabel
-PDPageLabelEqual
-PDPageLabelFromCosObj
-PDPageLabelGetCosObj
-PDPageLabelGetPrefix
-PDPageLabelGetPrefixASText
-PDPageLabelGetStart
-PDPageLabelGetStyle
-PDPageLabelIsValid
-PDPageLabelNew
-PDPageLabelNewASText
-_t_PDColorCal
-PDPrefGetBlackPointCompensation
-PDPrefGetColorCal
-PDPrefGetDefaultBlendingColorSpace
-PDPrefGetInstallPatternParentGState
-PDPrefGetUseOutputIntents
-PDPrefSetBlackPointCompensation
-PDPrefSetColorCal
-PDPrefSetDefaultBlendingColorSpace
-PDPrefSetInstallPatternParentGState
-PDPrefSetUseOutputIntents
-PDPrefSetWorkingCMYK
-PDPrefSetWorkingGray
-PDPrefSetWorkingRGB
-_t_PDRedactParams
-PDRedactionGetProps
-PDRedactionSetProps
-PDStyle
-PDStyleGetColor
-PDStyleGetFont
-PDStyleGetFontSize
-CastToPDTextAnnot
-PDTextAnnot
-PDTextAnnotGetContents
-PDTextAnnotGetContentsASText
-PDTextAnnotIsOpen
-PDTextAnnotSetContents
-PDTextAnnotSetContentsASText
-PDTextAnnotSetOpen
-PDCharOffset
-PDResTree
-PDTextSelect
-PDTextSelectEnumQuadProc
-PDTextSelectEnumRTFTextProc
-PDTextSelectEnumTextProc
-_t_HiliteEntry
-_t_PDTextSelectRange
-PDTextSelectCreatePageHilite
-PDTextSelectCreatePageHiliteEx
-PDTextSelectCreateRanges
-PDTextSelectCreateRangesEx
-PDTextSelectCreateWordHilite
-PDTextSelectCreateWordHiliteEx
-PDTextSelectDestroy
-PDTextSelectEnumQuads
-PDTextSelectEnumText
-PDTextSelectEnumTextUCS
-PDTextSelectGetBoundingRect
-PDTextSelectGetPage
-PDTextSelectGetRange
-PDTextSelectGetRangeCount
-PDThread
-PDThreadDestroy
-PDThreadFromCosObj
-PDThreadGetCosObj
-PDThreadGetFirstBead
-PDThreadGetInfo
-PDThreadGetInfoASText
-PDThreadIsValid
-PDThreadNew
-PDThreadSetFirstBead
-PDThreadSetInfo
-PDThreadSetInfoASText
-PDThumb
-PDThumbCreationServer
-PDThumbCreationDrawThumbProc
-PDThumbCreationGetThumbDataProc
-PDThumbCreationNotifyPageProc
-_t_PDThumbCreationServer
-PDThumbGetImageData
-PDThumbGetIndexedColorSpace
-fxDefaultPageDuration
-fxDefaultTransDuration
-PDTrans
-PDTransEqual
-PDTransFromCosObj
-PDTransGetCosObj
-PDTransGetDuration
-PDTransGetSubtype
-PDTransIsValid
-PDTransNew
-PDTransNewFromCosDoc
-PDTransNull
-PDViewDestNULL
-PDViewDestination
-PDViewDestCreate
-PDViewDestDestroy
-PDViewDestFromCosObj
-PDViewDestGetAttr
-PDViewDestGetCosObj
-PDViewDestIsValid
-PDViewDestResolve
-WXE_ADJACENT_TO_SPACE
-WXE_ENCODING_WARNING
-WXE_ENC_MISSING
-WXE_ENC_NO_UCS
-WXE_ENC_UNMAPPED
-WXE_EXT_CHAR_OFFSETS
-WXE_FROM_ACTUALT
-WXE_FRONT_TAB
-WXE_HAS_DIGIT
-WXE_HAS_HYPHEN
-WXE_HAS_LEADING_PUNC
-WXE_HAS_LETTER
-WXE_HAS_LIGATURE
-WXE_HAS_NONALPHANUM
-WXE_HAS_PUNCTUATION
-WXE_HAS_SOFT_HYPHEN
-WXE_HAS_TRAILING_PUNC
-WXE_HAS_UNMAPPED_CHAR
-WXE_HAS_UPPERCASE
-WXE_LAST_WORD_ON_LINE
-WXE_PDF_ORDER
-WXE_RD_ORDER_SORT
-WXE_REVERSE_DIRECTION
-WXE_ROTATED
-WXE_STREAM
-WXE_VERTICAL_FLOW
-WXE_WBREAK_WORD
-WXE_WORD_IS_UNICODE
-WXE_XY_SORT
-W_ACCENT
-W_CNTL
-W_COMMA
-W_DIGIT
-W_END_PHRASE
-W_HYPHEN
-W_LETTER
-W_LIGATURE
-W_PERIOD
-W_PUNCTUATION
-W_SOFT_HYPHEN
-W_UNMAPPED
-W_UPPERCASE
-W_WHITE
-W_WILD_CARD
-W_WORD_BREAK
-PDWord
-PDWordFinder
-PDWordFinderCtrlProc
-PDWordProc
-_t_PDWordFinderConfig
-PDWordCreateTextSelect
-PDWordFilterString
-PDWordFilterWord
-PDWordFinderGetNthWord
-PDWordGetASText
-PDWordGetAttr
-PDWordGetAttrEx
-PDWordGetByteIdxFromHiliteChar
-PDWordGetCharDelta
-PDWordGetCharEncFlags
-PDWordGetCharOffset
-PDWordGetCharOffsetEx
-PDWordGetCharQuad
-PDWordGetCharacterTypes
-PDWordGetLength
-PDWordGetNthCharStyle
-PDWordGetNthQuad
-PDWordGetNumHiliteChar
-PDWordGetNumQuads
-PDWordGetString
-PDWordGetStyleTransition
-PDWordIsCurrentlyVisible
-PDWordIsRotated
-PDWordMakeVisible
-PDWordSplitString
-WF_LATEST_VERSION
-WF_VERSION_2
-WF_VERSION_3
-WF_VERSION_4
-PDWordFinderAcquireVisibleWordList
-PDWordFinderAcquireWordList
-PDWordFinderDestroy
-PDWordFinderEnumVisibleWords
-PDWordFinderEnumWords
-PDWordFinderEnumWordsStr
-PDWordFinderGetLatestAlgVersion
-PDWordFinderReleaseWordList
-PDEAttrEnumProc
-PDEObjectDumpProc
-PDEAttrEnumTable
-PDELogDump
-PDEObjectDump
-IN
-OUT
-PEX1
-PEX1
-PEX2
-PEX2
-kPDEAfterLast
-kPDEBeforeFirst
-kPDFStateSetAll
-PDCodePageOptions
-PDEEnumElementsFlags
-PDEGraphicStateWasSetFlags
-PDEType
-ASFloat
-PDEDoc
-PDEEmitStateP
-PDEPage
-PDEReader
-PDEState
-PDEWriter
-_t_PDEColorSpec
-_t_PDEColorValue
-_t_PDEDash
-_t_PDEDashEx
-_t_PDEFilterArray
-_t_PDEFilterSpec
-_t_PDEGlyphDescription
-_t_PDEGlyphRun
-_t_PDEGraphicState
-_t_PDEGraphicStateEx
-PDEDefaultGState
-PDEDefaultGStateEx
-PDEMergeResourcesDict
-PDEPurgeCache
-PDEScratchDocCleanup
-JPXColorSpaceType
-JPXColorSpace
-_t_JPXCSEnumAttrs
-JPXColorSpaceAcquireNext
-JPXColorSpaceGetEnumAttrs
-JPXColorSpaceGetProfile
-JPXColorSpaceGetType
-JPXPalette
-JPXPaletteGetBitDepths
-JPXPaletteGetNumComponents
-JPXPaletteGetNumEntries
-JPXPaletteGetTable
-PDEBeginContainer
-PDEBeginContainerCreate
-PDEBeginContainerGetDict
-PDEBeginContainerGetMCTag
-PDEBeginContainerSetDict
-PDEBeginContainerSetMCTag
-PDEBeginGroup
-PDEBeginGroupCreate
-PDEClip
-PDEClipEnumProc
-PDEClipAddElem
-PDEClipCopy
-PDEClipCreate
-PDEClipFlattenedEnumElems
-PDEClipGetElem
-PDEClipGetNumElems
-PDEClipRemoveElems
-PDEBlackPointFlt
-PDEColorSpace
-PDEPatternColorSpace
-PDEWhitePointFlt
-PDEColorRangeFlt
-PDEColorSpaceStruct
-PDEXYZColorFlt
-_t_PDEDeviceNColorData
-_t_PDEGrayCalFlt
-_t_PDEICCBasedColorData
-_t_PDEIndexedColorData
-_t_PDELabCalFlt
-_t_PDERGBCalFlt
-_t_PDESeparationColorData
-PDEColorSpaceCreate
-PDEColorSpaceCreateFromCosObj
-PDEColorSpaceCreateFromName
-PDEColorSpaceCreateInCosDoc
-PDEColorSpaceGetBase
-PDEColorSpaceGetBaseNumComps
-PDEColorSpaceGetCTable
-PDEColorSpaceGetCosObj
-PDEColorSpaceGetHiVal
-PDEColorSpaceGetName
-PDEColorSpaceGetNumComps
-PDEColorSpaceGetStruct
-PDEContainer
-PDEContainerCreate
-PDEContainerGetContent
-PDEContainerGetDict
-PDEContainerGetMCTag
-PDEContainerSetContent
-PDEContainerSetDict
-PDEContainerSetMCTag
-PDEContentFlags
-PDEContentGetResourceFlags
-PDEContentToCosObjFlags
-PDEContent
-_t_PDEContentAttrs
-PDEContentAddElem
-PDEContentAddPage
-PDEContentAddPageEx
-PDEContentCopyResTable
-PDEContentCreate
-PDEContentCreateFromCosObj
-PDEContentFlattenOC
-PDEContentGetAttrs
-PDEContentGetDefaultColorSpace
-PDEContentGetElem
-PDEContentGetElemsStatus
-PDEContentGetNumElems
-PDEContentGetResources
-PDEContentRemoveElem
-PDEContentSetContainingStream
-PDEContentSetDefaultColorSpace_PEWCalls_
-PDEContentSetElemsStatus
-PDEContentSetPage
-PDEContentSetStreamOwner
-PDEContentToCosObj
-PDEDeviceNColors
-PDEDeviceNColorsCreate
-PDEDeviceNColorsGetColorValue
-PDEElementCopyFlags
-PDEElement
-PDEElementEnumProc
-PDEElementCopy
-PDEElementGetAllVisibilities
-PDEElementGetBBox
-PDEElementGetClip
-PDEElementGetGState
-PDEElementGetGStateEx
-PDEElementGetMatrix
-PDEElementGetMatrixEx
-PDEElementGetOCMD
-PDEElementHasGState
-PDEElementHasGStateEx
-PDEElementIsAtPoint
-PDEElementIsAtRect
-PDEElementIsCurrentlyVisible
-PDEElementMakeVisible
-PDEElementRemoveOCMD
-PDEElementSetClip
-PDEElementSetGState
-PDEElementSetGStateEx
-PDEElementSetMatrix
-PDEElementSetMatrixEx
-PDEElementSetOCMD
-PDEEnumElements
-PDEEndContainer
-PDEEndContainerCreate
-PDEEndGroup
-PDEEndGroupCreate
-PDEExtGState
-PDEExtGStateAcquireSoftMask
-PDEExtGStateCreate
-PDEExtGStateCreateNew
-PDEExtGStateGetAIS
-PDEExtGStateGetBPC
-PDEExtGStateGetBlendMode
-PDEExtGStateGetCosObj
-PDEExtGStateGetHalfToneOrigin
-PDEExtGStateGetOPFill
-PDEExtGStateGetOPM
-PDEExtGStateGetOPStroke
-PDEExtGStateGetOpacityFill
-PDEExtGStateGetOpacityStroke
-PDEExtGStateGetSA
-PDEExtGStateGetSoftMaskMatrix
-PDEExtGStateGetTK
-PDEExtGStateHasSoftMask
-PDEExtGStateSetAIS
-PDEExtGStateSetBPC
-PDEExtGStateSetBlendMode
-PDEExtGStateSetHalfToneOrigin
-PDEExtGStateSetOPFill
-PDEExtGStateSetOPM
-PDEExtGStateSetOPStroke
-PDEExtGStateSetOpacityFill
-PDEExtGStateSetOpacityStroke
-PDEExtGStateSetSA
-PDEExtGStateSetSoftMask
-PDEExtGStateSetSoftMaskMatrix
-PDEExtGStateSetTK
-kPDEFontNoEditableEmbedding
-kPDEFontNoEmbedding
-PDEFontCreateFlags
-PDEFontCreateNeedFlags
-PDEFont
-_t_PDEFontAttrs
-_t_PDEFontCreateFromSysFontParams
-_t_PDEFontCreateParams
-_t_PDEFontInfo
-_t_PDESpanItem
-_t_PDESpanSet
-PDEFontAddGlyphs
-PDEFontCreate
-PDEFontCreateFromCosObj
-PDEFontCreateFromSysFont
-PDEFontCreateFromSysFontAndEncoding
-PDEFontCreateFromSysFontAndEncodingInCosDoc
-PDEFontCreateFromSysFontEx
-PDEFontCreateFromSysFontExInCosDoc
-PDEFontCreateFromSysFontInCosDoc
-PDEFontCreateFromSysFontWithParams
-PDEFontCreateInCosDoc
-PDEFontCreateToUnicodeNow
-PDEFontCreateWidthsNow
-PDEFontCreateWithParams
-PDEFontCreateWithParamsInCosDoc
-PDEFontEmbedNow
-PDEFontEmbedNowDontSubset
-PDEFontGetAttrs
-PDEFontGetCosObj
-PDEFontGetCreateNeedFlags
-PDEFontGetNumCodeBytes
-PDEFontGetOneByteEncoding
-PDEFontGetSysEncoding
-PDEFontGetSysFont
-PDEFontGetWidths
-PDEFontGetWidthsNow
-PDEFontIsEmbedded
-PDEFontIsMultiByte
-PDEFontSetSysEncoding
-PDEFontSetSysFont
-PDEFontSubsetNow
-PDEFontSumWidths
-PDEFontTranslateGlyphIdsToUnicode
-PDEReleaseSpan
-PDEForm
-PDEFormAcquireXGroup
-PDEFormCreateClone
-PDEFormCreateFromCosObj
-PDEFormCreateFromCosObjEx
-PDEFormGetBBox
-PDEFormGetContent
-PDEFormGetContentToCosObjFlags
-PDEFormGetCosObj
-PDEFormGetLeading
-PDEFormGetMatrix
-PDEFormGetMatrixEx
-PDEFormHasXGroup
-PDEFormIsLeadingSet
-PDEFormSetContent
-PDEFormSetContentToCosObjFlags
-PDEFormSetLeading
-PDEFormSetXGroup
-PDEGraphicFont
-PDEGroup
-PDEGroupCreate
-PDEGroupGetContent
-PDEGroupSetContent
-PDEImageAttrFlags
-PDEImageColorSpaceFlags
-PDEImageDataFlags
-PDEImage
-PDEImageFlate
-_t_PDEImageAttrs
-_t_PDEImageJPXAttrs
-PDEImageAcquireImageFlate
-PDEImageAcquireImageJPX
-PDEImageCreate
-PDEImageCreateEx
-PDEImageCreateFromCosObj
-PDEImageCreateFromCosObjEx
-PDEImageCreateInCosDoc
-PDEImageCreateInCosDoc64
-PDEImageCreateInCosDocEx
-PDEImageDataIsEncoded
-PDEImageGetAttrs
-PDEImageGetColorSpace
-PDEImageGetColorSpaceEx
-PDEImageGetCosObj
-PDEImageGetData
-PDEImageGetDataLen
-PDEImageGetDataLen64
-PDEImageGetDataStm
-PDEImageGetDecodeArray
-PDEImageGetFilterArray
-PDEImageGetMatteArray
-PDEImageGetSMask
-PDEImageGetType
-PDEImageHasSMask
-PDEImageIsCosObj
-PDEImageSetColorSpace
-PDEImageSetColorValue
-PDEImageSetData
-PDEImageSetDataStm
-PDEImageSetDecodeArray
-PDEImageSetMatteArray
-PDEImageSetSMask
-PDEImageFlateAcquireColorSpace
-PDEImageFlateGetAttrs
-PDEImageFlateGetCosObj
-PDEImageFlateGetDataStm
-PDEImageJPX
-PDEImageJPXAcquireColorSpace
-PDEImageJPXAcquireJPXColorSpace
-PDEImageJPXAcquirePalette
-PDEImageJPXGetAttrs
-PDEImageJPXGetCosObj
-PDEImageJPXGetDataStm
-PDEImageJPXGetNumColorSpaces
-PDEImageJPXHasPalette
-PDEObject
-PDEAcquire
-PDEAddTag
-PDEGetTag
-PDEObjectGetType
-PDERelease
-PDERemoveTag
-PDEPSFlags
-PDEPS
-_t_PDEPSAttrs
-PDEPSCreate
-PDEPSCreateFromCosObj
-PDEPSGetAttrs
-PDEPSGetData
-PDEPSGetDataStm
-PDEPSSetData
-PDEPSSetDataStm
-PDEPathElementType
-PDEPathOpFlags
-PDEPath
-_t_PDEPathData
-PDEPathAddSegment
-PDEPathCreate
-PDEPathGetData
-PDEPathGetDataEx
-PDEPathGetPaintOp
-PDEPathSetData
-PDEPathSetDataEx
-PDEPathSetPaintOp
-PDEPattern
-PDEPatternCreate
-PDEPatternGetCosObj
-PDEPlace
-PDEPlaceCreate
-PDEPlaceGetDict
-PDEPlaceGetMCTag
-PDEPlaceSetDict
-PDEPlaceSetMCTag
-PDEShading
-PDEShadingCreateFromCosObj
-PDEShadingCreateFromCosObjEx
-PDEShadingGetCosObj
-PDESoftMaskCreateFlags
-PDESoftMask
-PDESoftMaskAcquireForm
-PDESoftMaskAcquireFormEx
-PDESoftMaskCreate
-PDESoftMaskCreateFromCosObj
-PDESoftMaskCreateFromName
-PDESoftMaskGetBackdropColor
-PDESoftMaskGetCosObj
-PDESoftMaskGetName
-PDESoftMaskGetTransferFunction
-PDESoftMaskSetBackdropColor
-PDESoftMaskSetTransferFunction
-PDESoftMaskSetXGroup
-PDETextFlags
-PDETextRenderMode
-PDETextStateWasSetFlags
-PDEText
-PDETextItem
-_t_PDETextState
-PDETextAdd
-PDETextAddEx
-PDETextAddGlyphs
-PDETextAddGlyphsEx
-PDETextAddItem
-PDETextCreate
-PDETextGetAdvance
-PDETextGetAdvanceWidth
-PDETextGetBBox
-PDETextGetFont
-PDETextGetGState
-PDETextGetGStateEx
-PDETextGetItem
-PDETextGetMatrix
-PDETextGetMatrixEx
-PDETextGetNumBytes
-PDETextGetNumChars
-PDETextGetNumRuns
-PDETextGetQuad
-PDETextGetRunForChar
-PDETextGetState
-PDETextGetStrokeMatrix
-PDETextGetStrokeMatrixEx
-PDETextGetText
-PDETextGetTextMatrix
-PDETextGetTextMatrixEx
-PDETextGetTextState
-PDETextIsAtPoint
-PDETextIsAtRect
-PDETextRemove
-PDETextRemoveItems
-PDETextReplaceChars
-PDETextRunGetCharOffset
-PDETextRunGetNumChars
-PDETextRunSetFont
-PDETextRunSetGState
-PDETextRunSetGStateEx
-PDETextRunSetMatrix
-PDETextRunSetMatrixEx
-PDETextRunSetState
-PDETextRunSetStrokeMatrix
-PDETextRunSetStrokeMatrixEx
-PDETextRunSetTextMatrix
-PDETextRunSetTextMatrixEx
-PDETextRunSetTextState
-PDETextSplitRunAt
-PDETextItemCopyText
-PDETextItemCreate
-PDETextItemCreateEx
-PDETextItemGetFont
-PDETextItemGetGState
-PDETextItemGetGStateEx
-PDETextItemGetTextLen
-PDETextItemGetTextMatrix
-PDETextItemGetTextMatrixEx
-PDETextItemGetTextState
-PDETextItemRemoveChars
-PDETextItemReplaceChars
-PDETextItemReplaceText
-PDETextItemSetFont
-PDETextItemSetGState
-PDETextItemSetGStateEx
-PDETextItemSetTextMatrix
-PDETextItemSetTextMatrixEx
-PDETextItemSetTextState
-PDEUnknown
-PDEUnknownGetOpName
-PDEXGroupCreateFlags
-PDEXGroup
-PDEXGroupAcquireColorSpace
-PDEXGroupCreate
-PDEXGroupCreateFromCosObj
-PDEXGroupGetCosObj
-PDEXGroupGetIsolated
-PDEXGroupGetKnockout
-PDEXGroupSetColorSpace
-PDEXGroupSetIsolated
-PDEXGroupSetKnockout
-PDEXObject
-PDEXObjectCreate
-PDEXObjectGetCosObj
-PDSysEncoding
-PDSysEncodingCreateFromBaseName
-PDSysEncodingCreateFromCMapName
-PDSysEncodingCreateFromCMapStream
-PDSysEncodingCreateFromCodePage
-PDSysEncodingGetWMode
-PDSysEncodingIsIdentity
-PDSysEncodingIsMultiByte
-PDSysEncodingSetIsUTF16
-PDSysFontMatchFlags
-PDSysFontPackageType
-ATSFontFamilyRef
-ATSFontRef
-PDSysFont
-PDSysFontFID
-PDSysFontFRef
-PDSysFontFStyle
-PDSysFontFontFamilyRef
-PDSysFontMode
-PDSysFontEnumProc
-_t_PDSysFontPlatData
-_t_PDSysFontPlatData
-_t_PDSysFontPlatData
-PDEmbedSysFontForPDEFont
-PDEnumSysFonts
-PDFindSysFont
-PDFindSysFontEx
-PDFindSysFontForPDEFont
-PDSysFontAcquirePlatformData
-PDSysFontGetAttrs
-PDSysFontGetCIDSystemInfo
-PDSysFontGetCreateFlags
-PDSysFontGetEncoding
-PDSysFontGetInfo
-PDSysFontGetName
-PDSysFontGetScript
-PDSysFontGetType0Widths
-PDSysFontGetWidths
-PDSysFontGetWidthsEx
-PDSysFontReleasePlatformData
-PDSysFontVerifyEncoding
-IN
-OUT
-kPDSAfterLast
-kPDSBeforeFirst
-PDSType
-PDSOBJR
-PDSAttrObj
-PDSAttrObjCreate
-PDSAttrObjCreateFromStream
-PDSAttrObjGetCosObj
-PDSAttrObjGetOwner
-PDSClassMap
-PDSClassMapAddAttrObj
-PDSClassMapGetAttrObj
-PDSClassMapGetNumAttrObjs
-PDSClassMapRemoveAttrObj
-PDSClassMapRemoveClass
-PDSElement
-EnumElementsWithUserPropertiesProc
-PDSElementEnumUserPropertiesAsASTextProc
-PDSElementEnumUserPropertiesAsCosObjProc
-_t_PDUserPropertiesXMLLabels
-PDDocEnumPDSElementsWithUserProperties
-PDDocHasUserProperties
-PDSElementAddAttrObj
-PDSElementAddClass
-PDSElementClearID
-PDSElementCreate
-PDSElementEnumKidsWithUserProperties
-PDSElementEnumUserPropertiesAsASText
-PDSElementEnumUserPropertiesAsCosObj
-PDSElementExportUserProperties
-PDSElementFindAncestorWithUserProperties
-PDSElementGetActualText
-PDSElementGetActualTextASText
-PDSElementGetAlt
-PDSElementGetAltASText
-PDSElementGetAttrObj
-PDSElementGetClass
-PDSElementGetCosObj
-PDSElementGetFirstPage
-PDSElementGetID
-PDSElementGetKid
-PDSElementGetKidEx
-PDSElementGetKidWithMCInfo
-PDSElementGetLanguage
-PDSElementGetNumAttrObjs
-PDSElementGetNumClasses
-PDSElementGetNumKids
-PDSElementGetParent
-PDSElementGetRevision
-PDSElementGetStructTreeRoot
-PDSElementGetTitle
-PDSElementGetTitleASText
-PDSElementGetType
-PDSElementHasActualText
-PDSElementHasAlt
-PDSElementHasLanguage
-PDSElementHasUserProperties
-PDSElementIncrementRevision
-PDSElementInsertKid
-PDSElementInsertMCAsKid
-PDSElementInsertMCAsKidEx
-PDSElementInsertMCRefAsKid
-PDSElementInsertOBJAsKid
-PDSElementInsertStmMCAsKid
-PDSElementRemoveAllAttrObjs
-PDSElementRemoveAllClasses
-PDSElementRemoveAttrObj
-PDSElementRemoveClass
-PDSElementRemoveKid
-PDSElementRemoveKidMC
-PDSElementRemoveKidOBJ
-PDSElementReplaceKid
-PDSElementReplaceKidMC
-PDSElementReplaceKidOBJ
-PDSElementSetActualText
-PDSElementSetActualTextASText
-PDSElementSetAlt
-PDSElementSetAltASText
-PDSElementSetID
-PDSElementSetLanguage
-PDSElementSetTitle
-PDSElementSetTitleASText
-PDSElementSetType
-PDSOBJGetParent
-PDSMC
-PDSMCR
-_t_PDSMCInfo
-PDSMCGetInfo
-PDSMCGetPDEContainer
-PDSMCGetParent
-PDSMCIDGetParent
-PDSMCRefCreate
-PDSMCRef
-PDSMCRef
-PDSMCRefDestroy
-PDSRoleMap
-PDSRoleMapCopy
-PDSRoleMapDoesMap
-PDSRoleMapGetDirectMap
-PDSRoleMapMap
-PDSRoleMapUnMapDst
-PDSRoleMapUnMapSrc
-PDSTreeRoot
-PDDocCreateStructTreeRoot
-PDDocGetStructTreeRoot
-PDDocRemoveStructTreeRoot
-PDSTreeRootCreateClassMap
-PDSTreeRootCreateRoleMap
-PDSTreeRootGetClassMap
-PDSTreeRootGetElementFromID
-PDSTreeRootGetKid
-PDSTreeRootGetNumKids
-PDSTreeRootGetRoleMap
-PDSTreeRootInsertKid
-PDSTreeRootRemoveClassMap
-PDSTreeRootRemoveKid
-PDSTreeRootRemoveRoleMap
-PDSTreeRootReplaceKid
-PDSTreeRootReplaceStreamRef
-ASExtensionPhase_INGs
-ASExtensionPhase
-ASExtensionProgressProc
-ASExtensionReportErrorProc
-ASFileSysGetDefaultTempPath
-ASFileSysSetDefaultTempPath
-ASMemAllocProc
-ASMemAvailProc
-ASMemFreeProc
-ASMemReallocProc
-cosSaveWriteXref
-ASFileError
-AVPS_MAC_ROMAN_ENC
-AVPS_WIN_ANSI_ENC
-AcroViewError
-BAD_NSELECTOR
-CosError
-CosErrorAlways
-CosSyntaxError
-DLADD_disableFlattening
-ERR_ERROR_MASK
-ERR_ERROR_SHIFT
-ERR_GENERAL
-ERR_NOMEMORY
-ERR_SEVERITY_MASK
-ERR_SEVERITY_SHIFT
-ERR_SYSTEM_MASK
-ERR_SYSTEM_SHIFT
-ERR_UNUSED_MASK
-ErrBuildCode
-ErrGetCode
-ErrGetSeverity
-ErrGetSignedCode
-ErrGetSystem
-FontSvrError
-GenError
-INCL_DOS
-INCL_GPI
-INCL_PM
-MDAppError
-MDSysError
-PDDocError
-PDDocErrorAlways
-PDFEditError
-PDFXError
-PDMetadataError
-PDModelError
-PDPageError
-PDPageErrorAlways
-PDPageErrorSilent
-PDSEditError
-PageError
-PageErrorSilent
-RasterError
-XtnError
-XtnMgrError
-__defedPlatformTypes
-kPDFLVersion
-ErrOptions
-ErrSysOptions
-OS2Errs
-Options
-PDDoOptions
-PDIStyles
-PDOptions
-PDOptions
-PDOutput_Options
-ProcSets
-WinErrs
-avOptions
-cfMacOptions
-cosErrOptions
-cosSynErrOptions
-fileErrOptions
-fsErrOptions
-genErrOptions
-mdAppOptions
-mdAppOptions
-mdSysOptions
-pageErrOptions
-pdMetadataErrOptions
-pdModErrOptions
-pdOptions
-pdPErrOptions
-pdfxErrOptions
-pdsErrOptions
-peErrOptions
-rasErrOptions
-xmErrOptions
-ErrSeverity
-ErrSystem
-NSelector
-PDEncodingType
-PlatformBitmapPtr
-PlatformBitmapPtr
-PlatformBitmapPtr
-PlatformWindowPtr
-PlatformWindowPtr
-TextServer
-ThreadLocalKey
-ThreadLocalKey
-ThreadLocalKey
-ASClientAllocProc
-ASClientFreeProc
-ASClientMemAvailProc
-ASClientReallocProc
-ExternalFilePermissionProc
-PDDoExtGStateProc
-PDFLClientRNGProc
-PDOCFindOutAutoStatePrefProc
-PDOCFindOutLanguageProc
-PDOCFindOutUserProc
-PDOCFindOutZoomProc
-TKResourceAcquireProc
-TKResourceReleaseProc
-_t_PDFLData
-_t_PDFLData
-_t_PDFLData
-_t_PDFLMemStats
-_t_TKAllocatorProcs
-_t_TKExtensionProcs
-_t_TKResourceProcs
-ASAtomGetCount
-ASPurgeMemory
-AVExtensionMgrRegisterNotification
-AVExtensionMgrUnregisterNotification
-CosSetExternalFilePermissionProc
-PDFLGetFlags
-PDFLGetInitCount
-PDFLGetVersion
-PDFLTerm
-PDFLibraryRegisterNotification
-PDFLibraryRegisterNotificationEx
-PDFLibraryRegisterRNG
-PDFLibraryUnregisterNotification
-PDOCRegisterFindOutAutoStatePrefProc
-PDOCRegisterFindOutLanguageProc
-PDOCRegisterFindOutUserProc
-PDOCRegisterFindOutZoomProc
-PDDocPrintPages
-kPDPrintUseCropBox
-kPDPrintUseMediaBox
-ALDImageColorType
-ImageInk
-IncludeOptions
-OPIversion
-PDDuplexOOptions
-PDFLPrintProgressMarker
-PDPDFarEastFont_Download_Options
-PDPrintFontArrayFlags
-PDPrintTrapTypes
-PDPrintWhatAnnot_Options
-PDPrintWhatFlipOptions
-pdprintsuppressenum
-PDDuplexEnum
-PDFLPrintUserCallbacks
-PDFLPrintUserParams
-PDFLPrintUserParamsEx
-PDFarEastFont
-PDInclusion
-PDOutputType
-PDPrintClient
-PDPrintController
-PDPrintMarkStyles
-PDPrintTrapType
-PDPrintWhatAnnot
-PDPrintWhatFlip
-PPDFeaturesRec
-PDFLPrintCancelProc
-PDFLPrintProgressProc
-PDPrintCanEmitFontProc
-PDPrintEmitFontProc
-PDPrintGetFontEncodingMethodProc
-ImageInks
-OPI13dict
-OPI20dict
-OPIdict
-PDPrintParams
-PDPrintStr
-PDTileEx
-_t_PDFLPrintUserCallbacks
-_t_PDFLPrintUserParams
-_t_PDFLPrintUserParams
-_t_PDFLPrintUserParams
-_t_PDFLPrintUserParamsEx
-_t_PDPrintClient
-_t_PPDFeatures
-_t_TIFFASCIITagList
-_t_monoInkList
-_t_textList
-PDFLPrintDoc
-PDFLPrintDocEx
-PDFLPrintPDF
-PDFontDownloadContext
-PDFontStyle
-PDPrintFont
-PDPrintFontArray
-PDFontPSEmitGlyphsIncr
-PDFontPSFlushIncrGlyphList
-PDFontPSGetComponentFontList
-PDFontStreamPS
-PDFontWasExtracted
-PDFontWasFauxed
-PDFontDownloadContextCreate
-PDFontDownloadContextDestroy
-kPDPageBlendingProfileValueStr
-kPDPageDirectlyImposedStr
-kPDPageDisplayOverPrintPreviewStr
-kPDPageDoLazyEraseStr
-kPDPageDoNotDownloadFontsStr
-kPDPageDoNotSubstituteWorkingSpacesStr
-kPDPageDrawSmoothAATextDDRStr
-kPDPageDrawSmoothAATextPreviewStr
-kPDPageDrawSmoothBicubicImageStr
-kPDPageDrawSmoothImageStr
-kPDPageDrawSmoothLineArtStr
-kPDPageDrawSmoothTextStr
-kPDPageEmitPageGroupStr
-kPDPageForceGDIPortStr
-kPDPageIgnoreIsolatedAndKnockoutTransparencyGroupStr
-kPDPageImageAntiAliasStr
-kPDPageImageResampleBicubicStr
-kPDPageImageResampleLinearStr
-kPDPageIsPSPrintingStr
-kPDPageIsPrintPreviewingStr
-kPDPageIsPrintingStr
-kPDPageNoDitherStr
-kPDPagePassMetadatatoAGMPortStr
-kPDPagePassOCtoAGMPortStr
-kPDPagePassOPItoAGMPortStr
-kPDPageSuppressRasterAlphaStr
-kPDPageSwapComponentsStr
-kPDPageThreadIPParseStr
-kPDPageUseAnnotFacesStr
-kPDPageUsePreciseColorConvStr
-kPDPageUsePrinterMarkAnnotsStr
-kPDPageUseSignatureAnnotsOnlyStr
-kPDPageUseStampAnnotsOnlyStr
-kPDPageUseTrapAnnotsStr
-kPDPageWorkingSpacesOnlyForChangeStr
-kPDPageWritingToEMFStr
-PDPageEmitOptions
-PDPageOptions
-PDPageOptions
-PDPageDrawFlags
-PDPageDrawSmoothFlags
-PDPageMarkFlags
-PDPageTilingMode
-PDPageDrawContentsPlacedToWindow
-PDPageDrawContentsPlacedWithParams
-PDPageDrawContentsToMemory
-PDPageDrawContentsToMemoryEx
-PDPageEmitPSOrient
-PDPageGetSize
-PDPrefAASmoothOptions
-PDPrefAASmoothOptions
-RefXObjOptions
-PDRefXObjMode
-PDPrefGetAntialiasLevel
-PDPrefGetBlackPointCompensation
-PDPrefGetEnableThinLineHeuristics
-PDPrefGetGreekLevel
-PDPrefGetRefXObj
-PDPrefGetSuppressICCSpaces
-PDPrefGetUseOutputIntents
-PDPrefSetAntialiasLevel
-PDPrefSetBlackPointCompensation
-PDPrefSetEnableThinLineHeuristics
-PDPrefSetGreekLevel
-PDPrefSetRefXObj
-PDPrefSetSuppressICCSpaces
-PDPrefSetUseLocalFonts
-PDPrefSetUseOutputIntents
-PDPrefSetWorkingCMYK
-PDPrefSetWorkingGray
-PDPrefSetWorkingRGB
-PDResTree
-PDTilings
-PDFlattenTilingMode
-PDFlatten
-AcroColorHFTNAME
-FOUR_CHAR_CODE
-FOUR_CHAR_CODE
-_FLG
-kACEMaxPathLength
-kACEMaxPathLength
-kACMaxPathLength
-kACMaxPathLength
-ACWorkingSpace
-AC_ColorSpace
-AC_Error
-AC_PackingCode
-AC_ProfileCode
-AC_RenderIntent
-AC_SelectorCode
-AC_SettingsKey
-AC_SettingsType
-PDColorConvertActionType
-PDColorConvertObjectAttributeFlags
-PDColorConvertSpaceTypeFlags
-PDCompletionCode
-PDReasonCode
-ACSwatchBook
-ACSwatchBookDB
-AC_PresetList
-AC_PresetList
-AC_Profile
-AC_Profile
-AC_ProfileList
-AC_ProfileList
-AC_Settings
-AC_Settings
-AC_String
-AC_String
-AC_Transform
-AC_Transform
-PDColorConvertObjectAttributes
-PDColorConvertSpaceType
-PDColorConvertReportProc
-PDColorConvertAction
-PDColorConvertActionEx
-PDColorConvertParams
-PDColorConvertParamsEx
-_t_ACCalCMYK
-_t_ACCalGray
-_t_ACCalLab
-_t_ACCalRGB
-_t_ACToneCurve
-_t_ACXYColor
-_t_ACXYZColor
-_t_AC_FileSpec
-_t_AC_LabColor
-ACApplyTransform
-ACEngineCount
-ACEngineInfo
-ACGetBlackPointCompensation
-ACGetSettingsProfile
-ACGetSettingsString
-ACGetSettingsUnsigned32
-ACGetWorkingSpaceProfile
-ACLoadSettings
-ACLoadSettingsU
-ACMakeBufferProfile
-ACMakeCalGray
-ACMakeCalLab
-ACMakeCalRGB
-ACMakeColorTransform
-ACMakePresetList
-ACMakeProfileList
-ACMakeSettings
-ACMakeString
-ACMonitorProfile
-ACMonitorProfileN
-ACPresetFileToName
-ACPresetListCount
-ACPresetListItemFile
-ACPresetListItemFileAndNameU
-ACProfileColorSpace
-ACProfileData
-ACProfileDescription
-ACProfileFromCode
-ACProfileFromDescription
-ACProfileListCount
-ACProfileListItemCode
-ACProfileListItemDescription
-ACProfileSize
-ACProfilesMatch
-ACSetBlackPointCompensation
-ACSetEngine
-ACStringASCII
-ACStringLocalized
-ACStringUnicode
-ACSwatchBookColorSpace
-ACSwatchBookCount
-ACSwatchBookDBDestroy
-ACSwatchBookDescription
-ACSwatchBookDestroy
-ACSwatchBookGetSwatchName
-ACSwatchBookGetSwatchValues
-ACSwatchBookIsProcess
-ACSwatchBookLoad
-ACSwatchBookLoadFromPath
-ACSwatchBookNumberOfColors
-ACSwatchBookTitle
-ACSwatchBooksFind
-ACUnReferencePresetList
-ACUnReferenceProfile
-ACUnReferenceProfileList
-ACUnReferenceSettings
-ACUnReferenceString
-ACUnReferenceTransform
-PDColorConvertPDEElement
-PDColorConvertPDEElementEx
-PDColorConvertPDEElementEx2
-PDDocColorConvertEmbedOutputIntent
-PDDocColorConvertEmbedOutputIntentEx
-PDDocColorConvertPage
-PDDocColorConvertPageEx
-PDPageColorConvertEmbedOutputIntent
-PDFlattenerColorCompSet
-PDFlattenerGrayscaleCompSet
-PDFlattenerMonochromeCompSet
-PDFlattenerQualitySetting
-kPDFlattenerFlags
-FlattenProgressMonitor
-PDFlattenerUserParams
-PDFlattenerConvert
-PDFlattenerConvertEx
-PDFlattenerConvertEx2
-PDFlattenerConvertEx3
-PDFlattenerInitialize
-PDFlattenerTerminate
-PDFProcessorColorCompressionSet
-PDFProcessorGrayscaleCompressionSet
-PDFProcessorMonochromeCompressionSet
-PDFProcessorPDFAConversionOption
-PDFProcessorPDFXConversionOption
-PDFProcessorProgressMon
-PDFProcessorPDFAConvertParams
-PDFProcessorPDFXConvertParams
-PDFProcessorConvertAndSaveToPDFA
-PDFProcessorConvertAndSaveToPDFX
-PDFProcessorConvertToPDFA
-PDFProcessorConvertToPDFX
-PDFProcessorInitialize
-PDFProcessorTerminate
-XPS2PDFConvert
-XPS2PDFInitialize
-XPS2PDFTerminate
-CosStreamSetData
-FOUR_CHAR_CODE
-AC_OptionCode
-DLImageCompression
-DLImageExportType
-FontRescanFlags
-PDFOptimizerCompressionType
-DLPDEImageExportParams
-FormsExtensionVersion
-ACGetOption
-ACSetOption
-ASSetDefaultFileSys
-ConvertPDFToExcel
-ConvertPDFToPowerPoint
-ConvertPDFToWord
-DLColorConvertPDEImage
-DLCreatePDEImageFromFile
-DLCreateResampledPDEImage
-DLEnableLicensedBehavior
-DLExportPDEImage
-DLPDEImageGetCompression
-DLPDEImageGetExportParams
-DLPDEImageGetHeight
-DLPDEImageGetIntent
-DLPDEImageGetSoftMask
-DLPDEImageGetWidth
-DLPDEImageRotate
-DLPDEImageScale
-DLPDEImageSetIntent
-DLPDEImageSetSoftMask
-DLPDEImageTranslate
-PDFLAddFontDirectories
-PDFLReinit
-PDFLRescanFontDirectories
-JPXColorSpaceGetApprox
-PDDocGetXAPMetadataCompactOptional
-AcroFormExportType
-AcroFormImportType
-PDDocEmbedFontFlags
-PDDocFormsType
-PDFOptimizationCompressQuality
-PDFOptimizerCompressImageType
-PDFOptimizerObjectCompressionType
-PDFOptimizerOption
-XFAFormExportType
-PDDocTextFinder
-PDFOptimizationParams
-OptimizedFont
-OptimizedImage
-PDDocTextFinderMatchList
-PDDocTextFinderMatchQuadRec
-PDDocTextFinderMatchRec
-PDFOptimizerReport
-PDDocDeletePagesEx
-PDDocEmbedFonts
-PDDocEmbedFontsFromFontArray
-PDDocHasSignature
-PDDocOptimizeDefaultParams
-PDDocOptimizeGetImageRecompress
-PDDocOptimizeGetObjectCompression
-PDDocOptimizeGetOption
-PDDocOptimizeGetPDFOutputLevel
-PDDocOptimizeReleaseParams
-PDDocOptimizeSetImageRecompress
-PDDocOptimizeSetObjectCompression
-PDDocOptimizeSetOption
-PDDocOptimizeSetPDFOutputLevel
-PDDocReplaceUnembeddedSimpleFonts
-PDDocWillNeedIncrementalSave
-PDDocumentOptimize
-PDDocumentOptimizeWithReport
-PDDocTextFinderAcquireMatchList
-PDDocTextFinderCreate
-PDDocTextFinderDestroy
-PDDocTextFinderReleaseMatchList
-_t_PDEContentAttrsEx
-PDEContentGetAttrsEx
-PDEContentToCosObjEx
-PDEFontCheckASTextIsRepresentable
-PDEFormCalcBBox
-PDEFormGetFont
-PDEFormGetName
-PDEFormGetTextState
-PDEFormSetContentEx
-PDEFormSetFont
-PDEFormSetTextState
-PDEGraphicFontGetPDEFont
-PDEImageGetColorValue
-PDEImageRemoveIndexedColor
-PDEPSGetCosObj
-PDEPathGetDataDouble
-PDEPathGetDataFloat
-PDEPathSetDataDouble
-PDEPathSetDataFloat
-PDETextAddASText
-PDETextGetASText
-PDETextItemCopyASText
-PDETextItemCreateASText
-PDFontXlateToUCSCanRaise
-PDPageDeleteFlags
-PDPageEnumInksParam
-_t_PDPageDrawMParamsRec
-_t_PDPageDrawWParamsRec
-PDPageAddQRBarcode
-PDPageDrawContentsToMemoryWithParams
-PDPageDrawContentsToWindowWithParams
-PDPageEnumInksWithParams
-PDPageSetBlendingProfile
-PDPrefGetAllowOpeningXFA
-PDPrefGetAllowRelaxedSyntax
-PDPrefGetAllowStringRetrievalFailingDecryption
-PDPrefGetDefaultIntentToProfile
-PDPrefGetNeverUseOutputIntent
-PDPrefGetPrintUsingWorkingSpaces
-PDPrefGetStrictFormEmission
-PDPrefSetAllowOpeningXFA
-PDPrefSetAllowRelaxedSyntax
-PDPrefSetAllowStringRetrievalFailingDecryption
-PDPrefSetDefaultIntentToProfile
-PDPrefSetNeverUseOutputIntent
-PDPrefSetPrintUsingWorkingSpaces
-PDPrefSetStrictFormEmission
-PDPrefSuppressDefaultCMYKCalibration
-PDPrefSuppressDefaultGrayCalibration
-PDPrefSuppressDefaultRGBCalibration
-PDSysFontGetFullName
-PDWordGetCharPoint
-PDWordGetNthQuadPoint
-PDWordIsLastWordInRegion
-GetFormsExtensionVersionNumber
-IsFormsExtensionSupported
-PDDocConvertXFAFieldsToAcroFormFields
-PDDocExportAcroFormsData
-PDDocExportXFAFormsData
-PDDocFlattenAcroFormFields
-PDDocFlattenNonFormAnnotations
-PDDocFlattenXFAFields
-PDDocFlattenXFAFieldsAsIfPrinted
-PDDocGetFormsType
-PDDocImportAcroFormsData
-PDDocImportXFAFormsData
-PDDocIsDynamicXFA
-PDDocIsStaticXFA
-
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdelayer_PDEImageFlate.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdelayer_PDEImageFlate.html deleted file mode 100644 index c2b69329..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdelayer_PDEImageFlate.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - -PDF Edit Layer: PDEImageFlate - - - - -
-DL Logo -
-
-
-
-
-

PDEImageFlate Functions

- -

PDEImageFlateAcquireColorSpace

- -
Header: PERProcs.h:2612
-
- -

Description

- -
Acquires the color space of the flate image. PDERelease should be used to release the color space when it is no longer referenced by the caller.
-
- - -
- -

Syntax

- -PDEColorSpace PDEImageFlateAcquireColorSpace(IN PDEImageFlate imgFlate); - -

Parameters

- -
imgFlate
-
IN/OUT An object of type PDEImageFlate.
-
- -

Returns

- -
The color space of the flate image; otherwise it returns NULL.
-
-

PDEImageFlateGetAttrs

- -
Header: PERProcs.h:2600
-
- -

Description

- -
Gets the attributes of a flate image.
-
- -

Syntax

- -void PDEImageFlateGetAttrs(IN PDEImageFlate imgFlate, OUT PDEImageFlateAttrsP attrsP, IN ASUns32 attrsSize); - -

Parameters

- - - -
imgFlate
-
IN/OUT A flate image resource object.
-
attrsP
-
IN/OUT (Filled by the method) A pointer to a PDEImageFlateAttrs structure containing the attributes of the flate image.
-
attrsSize
-
IN/OUT The size of the attrsP buffer in bytes.
-
- -

Exceptions

- -
-
-
-
-
-

PDEImageFlateGetCosObj

- -
Header: PERProcs.h:2589
-
- -

Description

- -
Gets a Cos object for an image.
-
- - -
- -

Syntax

- -void PDEImageFlateGetCosObj(IN PDEImageFlate pdeImageFlate, OUT CosObj *cosObjP); - -

Parameters

- - -
pdeImageFlate
-
IN/OUT The flate image whose Cos object is obtained.
-
cosObjP
-
IN/OUT (Filled by the method) The Cos object for the image.
-
- -

Exceptions

- -
-
-
-
-
-

PDEImageFlateGetDataStm

- -
Header: PERProcs.h:2630
-
- -

Description

- -

Gets a data stream for a flate compressed image, PDEImageFlate object.
-

The caller must dispose of the returned ASStm by calling ASStmClose().

-
-
- - -
- -

Syntax

- -ASStm PDEImageFlateGetDataStm(IN PDEImageFlate imgFlate, IN ASUns32 flags); - -

Parameters

- - -
imgFlate
-
IN/OUT The flate image whose data stream is obtained.
-
flags
-
IN/OUT PDEImageDataFlags flags. If the kPDEImageEncodedData flag is set, data is returned in encoded form. Otherwise, data is decoded.
-
- -

Returns

- -
The stream for the image.
- -

Exceptions

- - -
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdfllayer_PDFontDownloadContext.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdfllayer_PDFontDownloadContext.html deleted file mode 100644 index 6c0bf495..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdfllayer_PDFontDownloadContext.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - -PDFL Library Layer: PDFontDownloadContext - - - - -
-DL Logo -
-
-
-
-
-

PDFontDownloadContext Functions

- -

PDFontDownloadContextCreate

- -
Header: PDFLProcs.h:256
-
- -

Description

- -
Creates a font download context object. This object keeps track of the fonts downloaded during a print job and whether substitution fonts have already been downloaded. It also tracks the font download parameters, such as binaryOK and 'emit TrueType as Type 42'. It is meant for use in the PDFontStreamPS() method.
-
- - -
- -

Syntax

- -PDFontDownloadContext PDFontDownloadContextCreate(PDPrintClient client); - -

Parameters

- -
client
-
The client record to pass to PDDocPrintPages().
-
- -

Returns

- -
The newly-created context.
-
-

PDFontDownloadContextDestroy

- -
Header: PDFLProcs.h:264
-
- -

Description

- -
Destroys a font download context object. Call this method after PDDocPrintPages() returns.
-
- - -
- -

Syntax

- -void PDFontDownloadContextDestroy(PDFontDownloadContext context); - -

Parameters

- -
context
-
IN/OUT The context to destroy.
-
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdslayer_PDSMCRef.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdslayer_PDSMCRef.html deleted file mode 100644 index c74528d7..00000000 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/pdslayer_PDSMCRef.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - -PDSEdit Layer: PDSMCRef - - - - -
-DL Logo -
-
-
-
-
-

PDSMCRef Typedefs

- -

PDSMCRef

- -
Header: PDSExpT.h:138
-
- -

Syntax

- -typedef PDSMCRefRec *PDSMCRef; -
-

PDSMCRef

- -
Header: PDSExpT.h:142
-
- -

Syntax

- -typedef struct _t_PDSMCRef *PDSMCRef; - -

Returned From

- - - -

Used By

- - -
-
-
-

PDSMCRef Functions

- -

PDSMCRefDestroy

- -
Header: PDSWriteProcs.h:841
-
- -

Description

- -
Destroys a marked content reference created with PDSMCRefCreate(). This should only be called once the reference has been placed in the structure tree or if the reference is no longer needed.
- -

Note: If the PDSMCRef is associated with a PDSMC, it will be set as invalid and ignored on subsequent processing.

-
- - -
- -

Syntax

- -void PDSMCRefDestroy(IN PDSMCRef ref); - -

Parameters

- -
ref
-
The marked content reference to destroy.
-
- -

Exceptions

- -
Unknown
-
-
-
-
-
- -
- - - \ No newline at end of file diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/TOC.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1d/TOC.html similarity index 98% rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/TOC.html rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1d/TOC.html index 928706c5..88990957 100644 --- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2z/TOC.html +++ b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1d/TOC.html @@ -954,6 +954,7 @@
  • HFT
  • HFTData
  • HFTEntry
  • +
  • HFTServer
  • Selector