Example #1
0
        public static FPBool Exists(FPPoolRef inPool, string inClipID)
        {
            FPBool retval = SDK.FPClip_Exists(inPool, inClipID);

            SDK.CheckAndThrowError();
            return(retval);
        }
Example #2
0
        public static FPBool GetRetentionHold(FPClipRef inClip)
        {
            FPBool retval = SDK.FPClip_GetRetentionHold(inClip);

            SDK.CheckAndThrowError();
            return(retval);
        }
Example #3
0
        public static FPBool IsEBREnabled(FPClipRef inClip)
        {
            FPBool retval = SDK.FPClip_IsEBREnabled(inClip);

            SDK.CheckAndThrowError();
            return(retval);
        }
Example #4
0
        public static FPBool ValidateRetentionClass(FPRetentionClassContextRef inContextRef, FPClipRef inClipRef)
        {
            FPBool retval = SDK.FPClip_ValidateRetentionClass(inContextRef, inClipRef);

            SDK.CheckAndThrowError();
            return(retval);
        }
Example #5
0
        public static FPBool GetDisableCallback(FPLogStateRef inRef)
        {
            FPBool retval = SDK.FPLogState_GetDisableCallback(inRef);

            SDK.CheckAndThrowError();
            return(retval);
        }
        public static FPBool IsFieldSelected(FPQueryExpressionRef inRef, string inFieldName)
        {
            FPBool retval = SDK.FPQueryExpression_IsFieldSelected8(inRef, inFieldName);

            SDK.CheckAndThrowError();
            return(retval);
        }
Example #7
0
        public static FPBool GetAppendMode(FPLogStateRef inRef)
        {
            FPBool retval = SDK.FPLogState_GetAppendMode(inRef);

            SDK.CheckAndThrowError();
            return(retval);
        }
Example #8
0
        public static FPBool GetBoolAttribute(FPTagRef inTag, string inAttrName)
        {
            FPBool retval = SDK.FPTag_GetBoolAttribute8(inTag, inAttrName);

            SDK.CheckAndThrowError();
            return(retval);
        }
Example #9
0
 public static void SetRetentionHold(FPClipRef inClip, FPBool inHoldFlag, string inHoldID)
 {
     SDK.FPClip_SetRetentionHold8(inClip, inHoldFlag, inHoldID);
     SDK.CheckAndThrowError();
 }
Example #10
0
 public static void SetBoolAttribute(FPTagRef inTag, string inAttrName, FPBool inAttrValue)
 {
     SDK.FPTag_SetBoolAttribute8(inTag, inAttrName, inAttrValue);
     SDK.CheckAndThrowError();
 }
Example #11
0
 public static void SetDisableCallback(FPLogStateRef inRef, FPBool inValue)
 {
     SDK.FPLogState_SetDisableCallback(inRef, inValue);
     SDK.CheckAndThrowError();
 }
Example #12
0
 public static void SetAppendMode(FPLogStateRef inRef, FPBool inValue)
 {
     SDK.FPLogState_SetAppendMode(inRef, inValue);
     SDK.CheckAndThrowError();
 }
Example #13
0
 public static extern FPBool FPLogState_SetDisableCallback(FPLogStateRef inRef, FPBool inState);
Example #14
0
 public static extern FPBool FPLogState_SetAppendMode(FPLogStateRef inRef, FPBool inState);
Example #15
0
 public static extern void FPClip_SetRetentionHold8(FPClipRef inClip, FPBool inHoldFlag, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(MarshalPtrToUtf8))] string inHoldID);
Example #16
0
 public static extern void FPTag_SetBoolAttribute8(FPTagRef inTag, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(MarshalPtrToUtf8))] string inAttrName, FPBool inAttrValue);