• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* ------------------------------------------------------------------
2  * Copyright (C) 1998-2009 PacketVideo
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13  * express or implied.
14  * See the License for the specific language governing permissions
15  * and limitations under the License.
16  * -------------------------------------------------------------------
17  */
18 // ----------------------------------------------------------------------
19 //
20 // This Software is an original work of authorship of PacketVideo Corporation.
21 // Portions of the Software were developed in collaboration with NTT  DoCoMo,
22 // Inc. or were derived from the public domain or materials licensed from
23 // third parties.  Title and ownership, including all intellectual property
24 // rights in and to the Software shall remain with PacketVideo Corporation
25 // and NTT DoCoMo, Inc.
26 //
27 // -----------------------------------------------------------------------
28 /************************************************************************/
29 /*  file name       :H245Msg.h                  */
30 /*  file contents   :H245 Message I/F Definition Header     */
31 /*  draw        :'96.11.15                  */
32 /*----------------------------------------------------------------------*/
33 /*  amendment       :                       */
34 /*      Copyright (C) 1996 NTT DoCoMo               */
35 /************************************************************************/
36 #ifndef _H245MSG_H_
37 #define _H245MSG_H_
38 
39 #include "oscl_base.h"
40 /****************************************/
41 /* H245 Message Interface Structure     */
42 /****************************************/
43 typedef struct _h245Msg
44 {
45     uint8   Type1;                  /* Message Type */
46     uint8   Type2;                  /* Message Number */
47     uint8*  pData;                  /* Real Data Pointer */
48 } S_H245Msg;
49 typedef S_H245Msg       *PS_H245Msg;
50 
51 #endif /* H245MSG */
52