00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Mark Elendt 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: SHOP_Error.h ( SHOP Library, C++) 00015 * 00016 * COMMENTS: 00017 */ 00018 00019 #ifndef __SHOP_Error__ 00020 #define __SHOP_Error__ 00021 00022 enum SHOP_ErrorCode 00023 { 00024 SHOP_ERR_NO_ERROR = 0, // No error 00025 SHOP_ERR_INPUT_MISMATCH = 1, // Inputs of OP don't match 00026 SHOP_ERR_INVALID_SRC = 2, // Invalid source specified 00027 00028 SHOP_ERR_MAX_ERRORS 00029 }; 00030 00031 #endif
1.5.9