![]() |
Adobe Photoshop SDK |
|
Error Suite The Error Suite provides a way to display error strings to the user in any format. More...
Detailed DescriptionThe Error Suite provides a way to display error strings to the user in any format. Photoshop always makes a copy of the string passed in. The Error Suite is available in Adobe Photoshop 5.0 and later. Accessing the Suite #define kPSErrorSuite "Photoshop Error Suite for Plug-ins"
The current version of the error suite: #define kPSErrorSuiteVersion1 1
The suite is acquired as follows: PSErrorSuite1 *sPSErrors; error = sSPBasic->AcquireSuite(kPSErrorSuite, kPSErrorSuiteVersion1, &sPSErrors); if (error) goto . . . //handle error For PICA errors, see SPErrorCodes.h. Define Documentation
Unique identifier for the Error Suite.
Current version of the Error Suite.
Hands the host a ZString containing the error string to display to the user.
Typedef Documentation
Hands the host a Pascal string containing the error string to display to the user.
Hand the host a C string containing the error string to display to the user. The host will make a copy: Hands the host a C string containing the error string to display to the user.
The set of routines available in the Error Suite. |