Emotiv.EdkDll.IS_MentalCommandGetCurrentAction C# (CSharp) Method

IS_MentalCommandGetCurrentAction() public static method

public static IS_MentalCommandGetCurrentAction ( IntPtr state ) : IEE_MentalCommandAction_t
state System.IntPtr
return IEE_MentalCommandAction_t
        public static IEE_MentalCommandAction_t IS_MentalCommandGetCurrentAction(IntPtr state)
        {
            return Unmanaged_IS_MentalCommandGetCurrentAction(state);
        }

Usage Example

Exemplo n.º 1
0
 /// <summary>
 /// Returns the detected Cognitiv action of the user
 /// </summary>
 /// <returns>Cognitiv action type</returns>
 public EdkDll.IEE_MentalCommandAction_t MentalCommandGetCurrentAction()
 {
     return(EdkDll.IS_MentalCommandGetCurrentAction(hEmoState));
 }
EdkDll