Ejemplo n.º 1
0
 void CallStartupNPClientFunctions(TrackIRDll dll, IntPtr freePieWindowHandle, short data, short profileId)
 {
     Log("Calling dll with the following values - WindowHandle: " + freePieWindowHandle + " Data: " + data + " ProfileId: " +profileId );
     dll.GetSignature();
     dll.QueryVersion();
     dll.RegisterWindowHandle(freePieWindowHandle);
     dll.RequestData(data);
     dll.RegisterProgramProfileId(profileId);
     dll.StopCursor();
     dll.StartDataTransmission();
 }