/** * Display setup API for virtual terminal in USB memory * * @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_USB_DISPLAY_H__ #define __BS_USB_DISPLAY_H__ #include "BS_Error.h" #ifdef __cplusplus extern "C" { #endif BS_RET_CODE USB_SendNoticeImpl( const char* driveLetter, unsigned biostationID, const char* msg ); BS_RET_CODE USB_SetBackgroundImpl( const char* driveLetter, unsigned biostationID, int bgIndex, const char* pngFile ); BS_RET_CODE USB_SetSlideShowImpl( const char* driveLetter, unsigned biostationID, int numOfPicture, int imageIndex, const char* pngFile ); BS_RET_CODE USB_DeleteSlideShowImpl( const char*driveLetter, unsigned biostationID ); BS_RET_CODE USB_SetSoundImpl( const char* driveLetter, unsigned biostationID, int soundIndex, const char* wavFile ); BS_RET_CODE USB_SetLanguageFileImpl( const char* driveLetter, unsigned biostationID, int languageIndex, const char* languageFile ); #ifdef __cplusplus } #endif #endif