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();
 }
Beispiel #4
0
 public static extern FPInt FPQueryExpression_GetType(FPQueryExpressionRef inRef);
Beispiel #5
0
 public static extern FPPoolQueryRef FPPoolQuery_Open(FPPoolRef inPoolRef, FPQueryExpressionRef inQueryExpressionRef);
Beispiel #6
0
 public static extern void FPQueryExpression_SetType(FPQueryExpressionRef inRef, FPInt inType);
Beispiel #7
0
 public static extern FPLong FPQueryExpression_GetEndTime(FPQueryExpressionRef inRef);
Beispiel #8
0
 public static extern void FPQueryExpression_SetEndTime(FPQueryExpressionRef inRef, FPLong inTime);
Beispiel #9
0
 public static extern void FPQueryExpression_Close(FPQueryExpressionRef inRef);
Beispiel #10
0
 public static extern FPBool FPQueryExpression_IsFieldSelected8(FPQueryExpressionRef inRef, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(MarshalPtrToUtf8))] string inFieldName);
Beispiel #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();
 }