public static void SetStartTime(FPQueryExpressionRef inRef, FPLong inTime)
 {
     SDK.FPQueryExpression_SetStartTime(inRef, inTime);
     SDK.CheckAndThrowError();
 }
 public static void DeselectField(FPQueryExpressionRef inRef, string inFieldName)
 {
     SDK.FPQueryExpression_DeselectField8(inRef, inFieldName);
     SDK.CheckAndThrowError();
 }
 public static void Close(FPQueryExpressionRef inRef)
 {
     SDK.FPQueryExpression_Close(inRef);
     SDK.CheckAndThrowError();
 }
Example #4
0
 public static extern FPInt FPQueryExpression_GetType(FPQueryExpressionRef inRef);
Example #5
0
 public static extern FPPoolQueryRef FPPoolQuery_Open(FPPoolRef inPoolRef, FPQueryExpressionRef inQueryExpressionRef);
Example #6
0
 public static extern void FPQueryExpression_SetType(FPQueryExpressionRef inRef, FPInt inType);
Example #7
0
 public static extern FPLong FPQueryExpression_GetEndTime(FPQueryExpressionRef inRef);
Example #8
0
 public static extern void FPQueryExpression_SetEndTime(FPQueryExpressionRef inRef, FPLong inTime);
Example #9
0
 public static extern void FPQueryExpression_Close(FPQueryExpressionRef inRef);
Example #10
0
 public static extern FPBool FPQueryExpression_IsFieldSelected8(FPQueryExpressionRef inRef, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(MarshalPtrToUtf8))] string inFieldName);
Example #11
0
 public static extern void FPQueryExpression_DeselectField8(FPQueryExpressionRef inRef, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(MarshalPtrToUtf8))] string inFieldName);
 public static void SetType(FPQueryExpressionRef inRef, FPInt inType)
 {
     SDK.FPQueryExpression_SetType(inRef, inType);
     SDK.CheckAndThrowError();
 }