/*
 * TYPEDEF: SE_ERROR_HANDLING_FUNCTION_PTR
 *
 *   A pointer to a user-defined error-handling function, where the
 *   user-defined function must have a return type of void, and must
 *   accept exactly 4 parameters - an SE_LEVEL_0_API_FUNCTION_ENUM,
 *   an SE_STATUS_CODE_ENUM, and 2 char *'s. Used to pass error handlers
 *   into the various callback setting functions.
 */
typedef void (*SE_ERROR_HANDLING_FUNCTION_PTR)
(
SE_LEVEL_0_API_FUNCTION_ENUM function_to_catch,
SE_STATUS_CODE_ENUM status_code,
constchar *msg1,
constchar *msg2
);
Prev: SE_ELABORATED_CLASSIFICATION_ENTRY. Next: SE_ERROR_HANDLING_FUNCTION_SIGNATURE. Up:Index