/**************************************************************************** * NAME: App_Main.h *---------------------------------------------------------------------------- * Copyright (c) DIGITAL STREAM Technology Inc. *---------------------------------------------------------------------------- * CREATED_BY: Do Gon Lee * CREATION_DATE: 2009/08/24 * $Author: foxhunt $ * $Revision: 1.0 $ * $Date: 2009/08/24 10:39:43 $ *---------------------------------------------------------------------------- * PURPOSE: * - Entry point of Main application. *****************************************************************************/ #ifndef __APP_MAIN_H__ #define __APP_MAIN_H__ /*_____ I N C L U D E __________________________________________*/ /* HAL */ #include "DHL_OSAL.h" #include "DHL_DBG.h" #include "DHL_SYS.h" /* MW */ #include "DMW_Status.h" #include "DMW_Platform.h" #include "DMG_Service.h" #include //#include //#include #include "App_Config.h" #if COMMENT ____Overview____(){} #endif /*_____ D E F I N I T I O N ____________________________________*/ #if COMMENT ____Config____(){} #endif #define STATIC static #define APP_PORTING 0 /* App porting µ¿¾È ÀϽÃÀûÀ¸·Î ¸·À» macro */ /******************** * Define Stack Size * ********************/ #define SZ_1K 0x00000400 #define SZ_4K 0x00001000 #define SZ_8K 0x00002000 #define SZ_16K 0x00004000 #define SZ_64K 0x00010000 #define SZ_128K 0x00020000 #define SZ_256K 0x00040000 #define SZ_512K 0x00080000 #define min(a,b) (a)<=(b)?(a):(b) #define max(a,b) (a)>=(b)?(a):(b) #if COMMENT ____Types____(){} #endif #if COMMENT ____Variables____(){} #endif #if COMMENT ____NvParam____(){} #endif /*_____ F U N C T I O N ________________________________________*/ #if COMMENT ____Function____(){} #endif /* App_Main.c header file */ void App_PrintLogo(void); //void App_STBPowerOff(void); //void App_Exit(); /* App_Debug.c header file */ BOOL AppCheckPrintable(void); void App_PrintTextMessageBox2(int n_msg, char **msglist, int width); void App_PrintTextMessageBox(char *msg, int width); void App_InitDebug(void); void App_SetDebugLevel(int level); #endif /* __APP_MAIN_H__ */