IS_EmoEngineEqual() public static method

public static IS_EmoEngineEqual ( IntPtr a, IntPtr b ) : System.Boolean
a System.IntPtr
b System.IntPtr
return System.Boolean
Example #1
0
 /// <summary>
 /// Check whether two states are with identical EmoEngine state.
 /// </summary>
 /// <remarks>
 /// This function is comparing the time since EmoEngine start,
 /// the wireless signal strength and the signal quality of different channels
 /// </remarks>
 /// <param name="state">EmoState</param>
 /// <returns>true: Equal, false: Different</returns>
 public Boolean EmoEngineEqual(EmoState state)
 {
     return(EdkDll.IS_EmoEngineEqual(GetHandle(), state.GetHandle()));
 }