#ifndef HBBTV_APPLICATION_MANAGER_H #define HBBTV_APPLICATION_MANAGER_H #include "mid_common.h" typedef struct{ UINT8 remote_connection; UINT8 component_tag; UINT16 original_network_id; UINT16 transport_stream_id; UINT16 service_id; }OC_info_t; typedef struct{ UINT8 URL_base_len; UINT8 *pURL_base; UINT8 URL_extension_count; UINT8 **pURL_extension; }HTTP_info_t; MID_Status_t HBBTV_AppManagerInit(void); MID_Status_t HBBTV_AppManagerUnInit(void); MID_Status_t HBBTV_AppManagerStart(void); MID_Status_t HBBTV_AppManagerStop(void); MID_Status_t HBBTV_AppManagerStackCmd(UINT32 eCmd, void * pUserData); #endif