cadencii.winmmhelp.IsJoyAttatched C# (CSharp) Method

IsJoyAttatched() public static method

public static IsJoyAttatched ( int index ) : boolean
index int
return boolean
        public static boolean IsJoyAttatched( int index ) {
            if ( !s_initialized ) {
                JoyInit();
            }
            if ( s_num_joydev == 0 || index < 0 || (int)s_num_joydev <= index ) {
                return false;
            }
            return s_joy_attatched[index];
        }