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 * ramin 00008 * Side Effects Software Inc. 00009 * 20 Maud St. 00010 * Toronto, Ontario, M5V 2M5 00011 * Canada 00012 * 416-366-4607 00013 * 00014 * NAME: PRM_ChanState.h (Parameter Library) 00015 * 00016 * COMMENTS: 00017 */ 00018 00019 #ifndef __PRM_ChanState__ 00020 #define __PRM_ChanState__ 00021 00022 enum PRM_ChanState 00023 { 00024 PRM_NO_KEYS = 0, // not animated 00025 PRM_AT_KEY = 0x01, // either at a keyframe, or there is no channel 00026 PRM_OFF_KEY = 0x02, // a channel exists and curr time not at keyfr 00027 PRM_CHANGE_PENDING = 0x04 // like above, but user has attempted val change 00028 }; 00029 00030 #endif
1.5.9