00001 /*------------------------------------------------------------------------*/ 00002 /* file: SetPropertySatus.h */ 00003 /* Copyright INRIA 2006 */ 00004 /* Authors : Jean-Baptiste Silvy */ 00005 /* desc : define the different type of return status for the sci_set */ 00006 /* routine */ 00007 /*------------------------------------------------------------------------*/ 00008 00009 #ifndef _SET_PROPERTY_STATUS_ 00010 #define _SET_PROPERTY_STATUS_ 00011 00019 typedef enum 00020 { SET_PROPERTY_ERROR = -1, 00021 SET_PROPERTY_SUCCEED = 0 , 00022 SET_PROPERTY_UNCHANGED = 1 } SetPropertyStatus ; 00023 00028 SetPropertyStatus sciSetFinalStatus( SetPropertyStatus status1, SetPropertyStatus status2 ) ; 00029 00030 #endif /* _SET_PROPERTY_STATUS_ */
1.5.1