ASExtensionPhase.
ASExtensionPhase_LOADING | Loading
|
ASExtensionPhase_EXPORTING | Exporting
|
ASExtensionPhase_IMPORTING | Importing
|
ASExtensionPhase_INITIALIZING | Initializing
|
ASExtensionPhase_UNLOADING | Unloading
|
ASExtensionPhase_INGs.
typedef
ASInt16
ASExtensionPhase
;
Note: Extensions to the PDF Library are very similar to plugins to the Acrobat application. However, Adobe does not currently supply any extensions or support their creation.
void
ASExtensionProgressProc(
ASExtension
extension
,
ASExtensionPhase
phase
,
void
*
clientData
);
extension | The plug-in.
|
phase |
|
clientData | A pointer to the client data.
|
void
ASExtensionReportErrorProc(
ASExtension
extension
,
ASExtensionPhase
phase
,
ASInt32
error
,
void
*
clientData
);
extension | The plug-in.
|
phase | Phase.
|
error | The error code.
|
clientData | A pointer to the client data.
|