getFilter

...

Syntax

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

[DllImport(enginedll, EntryPoint = "getFilter")]
public static extern Int32 x86_getFilter(Int32 model, Int32 mask);

[DllImport(enginedll, EntryPoint = "getFilter")]
public static extern Int32 x64_getFilter(Int64 model, Int64 mask);

public static Int32 getFilter(Int64 model, Int64 mask)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_getFilter((Int32)model, (Int32)mask);
				return _result;
			}
			else
			{
				return x64_getFilter(model, mask);
			}
		}    

Property model

Size: 32 bit / 4 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.

Property mask

Size: 32 bit / 4 byte (value)
...