blob: 2daa484f23d8c3355824d7b284f1f1126f002c81 [file] [edit]
//
// Copyright 2020 Comcast Cable Communications Management, LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
#pragma once
#ifndef THIRD_PARTY_STARBOARD_RDK_SHARED_LINUXKEYMAPPING_H_
#define THIRD_PARTY_STARBOARD_RDK_SHARED_LINUXKEYMAPPING_H_
#include "starboard/key.h"
#include <string>
namespace third_party {
namespace starboard {
namespace rdk {
namespace shared {
class LinuxKeyMapping {
public:
static void MapKeyCodeAndModifiers(uint32_t& key_code, uint32_t& modifiers);
};
} // namespace shared
} // namespace rdk
} // namespace starboard
} // namespace third_party
#endif // THIRD_PARTY_STARBOARD_RDK_SHARED_LINUXKEYMAPPING_H_