getApplicationPlayVolume method

int getApplicationPlayVolume()
override

Getting the volume of the current process in the volume mixer (for Windows)

Implementation

int getApplicationPlayVolume() {
  if (_only_support_windows) {
    return _deviceFFIBindings.get_application_play_volume(_nativePointer);
  } else {
    debugPrint("device-manager-api not support");
    return -1;
  }
}