![]() |
Adobe Photoshop SDK |
|
Error SuiteThe 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"
#define kPSErrorSuiteVersion1 1
PSErrorSuite1 *sPSErrors; error = sSPBasic->AcquireSuite(kPSErrorSuite, kPSErrorSuiteVersion1, &sPSErrors); if (error) goto . . . //handle error Define Documentation
Unique identifier for the Error Suite.
Current version of the Error Suite.
Typedef Documentation
Hands the host a Pascal string containing the error string to display to the user.
Hands the host a C string containing the error string to display to the user.
|