C++程序  |  19行  |  495 B

// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_HOST_LINUX_UNICODE_TO_KEYSYM_H_
#define REMOTING_HOST_LINUX_UNICODE_TO_KEYSYM_H_

#include <vector>

#include "base/basictypes.h"

namespace remoting {

void GetKeySymsForUnicode(uint32_t code_point, std::vector<uint32_t>* keysyms);

}  // namespace remoting

#endif  // REMOTING_HOST_LINUX_UNICODE_TO_KEYSYM_H_