validateFreeResults

Clean validation results

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "validateFreeResults")]
public static extern void x86_validateFreeResults(Int32 results);

[DllImport(enginedll, EntryPoint = "validateFreeResults")]
public static extern void x64_validateFreeResults(Int64 results);

public static void validateFreeResults(Int64 results)
		{
			if (IntPtr.Size == 4)
			{
				x86_validateFreeResults((Int32)results);
			}
			else
			{
				x64_validateFreeResults(results);
			}
		}    

Property results

Size: 64 bit / 8 byte (reference)
???.