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

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

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

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

            SDK.CheckAndThrowError();
            return(retval);
        }
Esempio n. 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);
        }
Esempio n. 7
0
        public static FPBool GetAppendMode(FPLogStateRef inRef)
        {
            FPBool retval = SDK.FPLogState_GetAppendMode(inRef);

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

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