36 lines
1.2 KiB
C
36 lines
1.2 KiB
C
#ifndef __IMI_MEDIA_H__
|
|
#define __IMI_MEDIA_H__
|
|
/*******************************************************************************
|
|
Copyright: - 2023- Copyrights of EigenComm Ltd.
|
|
File name: - imimedia.h
|
|
Description: - IMS media interface
|
|
History: - 2023/04/10, Original created
|
|
******************************************************************************/
|
|
|
|
#include "imicomm.h"
|
|
|
|
/******************************************************************************
|
|
*****************************************************************************
|
|
* IMI enum
|
|
*****************************************************************************
|
|
******************************************************************************/
|
|
typedef enum IMI_MED_PRIM_ID_TAG
|
|
{
|
|
IMI_MED_PRIM_BASE = 0,
|
|
|
|
IMI_MED_PRIM_END = 0x0fff
|
|
}IMI_MED_PRIM_ID;
|
|
|
|
|
|
/******************************************************************************
|
|
*****************************************************************************
|
|
* STRUCT
|
|
*****************************************************************************
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|