cadencii.win32.joyGetNumDevs C# (CSharp) Method

joyGetNumDevs() public static method

public static joyGetNumDevs ( ) : uint
return uint
        public static uint joyGetNumDevs() {
            uint ret = 0;
            if ( status_winmm != DllStatus.NotFound ) {
                try {
                    ret = __joyGetNumDevs();
                } catch ( DllNotFoundException ex ) {
                    status_winmm = DllStatus.NotFound;
                }
            }
            return ret;
        }
win32