/* * Device symbols * * Defines unicode values for device symbols of hardware buttons */ /* * Copyright © 200, 2007 Nokia Corporation. All rights reserved. * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the name of copyright holder not be used in * advertising or publicity pertaining to distribution of the software without * specific, written prior permission. Copyright holder makes no * representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. * * COPYRIGHT HOLDER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. * */ #ifndef __DEVICE_SYMBOLS_H__ #define __DEVICE_SYMBOLS_H__ #define HWK_BUTTON_ESCAPE "" #define HWK_BUTTON_MENU "" #define HWK_BUTTON_SWAP "" #define HWK_BUTTON_VIEW "" #define HWK_BUTTON_POWER "" #define HWK_BUTTON_INCREASE "" #define HWK_BUTTON_DECREASE "" #define HWK_BUTTON_UP "" #define HWK_BUTTON_DOWN "" #define HWK_BUTTON_LEFT "" #define HWK_BUTTON_RIGHT "" #define HWK_BUTTON_SELECT "" #define HWK_BUTTON_LOCK "" /* Deprecated button names */ #define HWK_BUTTON_HOME HWK_BUTTON_SWAP #define HWK_BUTTON_CANCEL HWK_BUTTON_ESCAPE #endif