Exemplo n.º 1
0
 /// <summary>
 /// Determine the available compiled MIDI APIs.
 /// If the given `apis` parameter is null, returns the number of available APIs.
 /// Otherwise, fill the given apis array with the RtMidi::Api values.
 /// </summary>
 /// <param name="apis">An array or a null value.</param>
 internal static int GetCompiledApi(IntPtr /* RtMidiApi * */ apis) => Is64Bit
     ? RtMidiC64.GetCompiledApi(apis)
     : RtMidiC32.GetCompiledApi(apis);
Exemplo n.º 2
0
 /// <summary>
 /// Determine the available compiled MIDI APIs.
 /// If the given `apis` parameter is null, returns the number of available APIs.
 /// Otherwise, fill the given apis array with the RtMidi::Api values.
 /// </summary>
 /// <param name="apis">An array or a null value.</param>
 /// <param name="apisSize">Number of elements pointed to by <paramref name="apis"/></param>
 internal static int GetCompiledApi(IntPtr /* RtMidiApi * */ apis, uint apisSize) => Is64Bit
     ? RtMidiC64.GetCompiledApi(apis, apisSize)
     : RtMidiC32.GetCompiledApi(apis, apisSize);