2014-04-22 18:53:48 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "Hal.h"
|
|
|
|
#include "AndroidBridge.h"
|
|
|
|
|
|
|
|
using namespace mozilla::hal;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace hal_impl {
|
|
|
|
|
|
|
|
void
|
|
|
|
StartMonitoringGamepadStatus()
|
|
|
|
{
|
2015-01-10 03:33:57 +03:00
|
|
|
widget::GeckoAppShell::StartMonitoringGamepad();
|
2014-04-22 18:53:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StopMonitoringGamepadStatus()
|
|
|
|
{
|
2015-01-10 03:33:57 +03:00
|
|
|
widget::GeckoAppShell::StopMonitoringGamepad();
|
2014-04-22 18:53:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // hal_impl
|
|
|
|
} // mozilla
|