/** * Display Setup * * @author sjlee@suprema.co.kr * @see */ /* * Copyright (c) 2006 Suprema Co., Ltd. All Rights Reserved. * * This software is the confidential and proprietary information of * Suprema Co., Ltd. ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in * accordance with the terms of the license agreement you entered into * with Suprema. */ #ifndef __BS_DISPLAY_H__ #define __BS_DISPLAY_H__ #define BS_MAX_SLIDE_SHOW 32 // Background image index #define BS_BACKGROUND_LOGO 0 #define BS_BACKGROUND_NOTICE 1 // Sound index #define BS_SOUND_START 0 #define BS_SOUND_CLICK 1 #define BS_SOUND_SUCCESS 2 #define BS_SOUND_QUESTION 3 #define BS_SOUND_ERROR 4 #define BS_SOUND_SCAN 5 // Language index #define BS_LANG_ENGLISH 0 #define BS_LANG_KOREAN 1 #define BS_LANG_CUSTOM 2 #endif