remove_GamepadRemoved static method

void remove_GamepadRemoved(
  1. int token
)

Implementation

static void remove_GamepadRemoved(int token) {
  final activationFactory =
      CreateActivationFactory(_className, IID_IGamepadStatics);

  try {
    return IGamepadStatics.fromRawPointer(activationFactory)
        .remove_GamepadRemoved(token);
  } finally {
    free(activationFactory);
  }
}