blob: a255aa75c898792818563c2213a9b214865d8134 [file] [log] [blame]
rjw6c1fd8f2022-11-30 14:33:01 +08001/*****************************************************************************
2* Copyright Statement:
3* --------------------
4* This software is protected by Copyright and the information contained
5* herein is confidential. The software may not be copied and the information
6* contained herein may not be used or disclosed except with the written
7* permission of MediaTek Inc. (C) 2016
8*
9* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
10* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS (""MEDIATEK SOFTWARE"")
11* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
12* AN ""AS-IS"" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
13* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
14* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
15* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
16* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
17* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
18* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
19* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
20* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
21*
22* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
23* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
24* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
25* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
26* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
27*
28* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
29* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
30* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
31* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
32* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
33*
34*****************************************************************************/
35/*************************************************************
36*
37* This Software is the property of VIA Telecom, Inc. and may only be used pursuant to a license from VIA Telecom, Inc.
38*
39* Any unauthorized use inconsistent with the terms of such license is strictly prohibited.
40*
41* Copyright (c) 1999-2010 VIA Telecom, Inc. All rights reserved.
42*
43*************************************************************/
44/****************************************************************************
45 *
46 * Filename: imsi.h
47 *
48 * Purpose: Definition of IMSI_TYPE and supporting routines.
49 *
50 ****************************************************************************
51 *
52 * PVCS Header Information
53 *
54 * $Revision: 1.2 $
55 * $Author: fpeng $
56 *
57 * $Log: imsi.h $
58 *
59 * 07 06 2017 sue.zhong
60 * [MOLY00259241] [6293][C2K]Replace with KAL data type
61 * Correct copyright file header
62 * Revision 1.2 2004/03/25 12:09:34 fpeng
63 * Updated from 6.0 CP 2.5.0
64 * Revision 1.1 2003/05/12 15:38:49 fpeng
65 * Initial revision
66 * Revision 1.3 2002/06/06 13:13:01 chinh
67 * Changed and Added Copyright
68 * Revision 1.2 2001/11/20 12:31:11 mclee
69 * Removed ImsiType struct
70 * Revision 1.1 2001/01/17 10:58:52 plabarbe
71 * Initial revision
72 * Revision 1.1 2000/10/24 14:11:17 fpeng
73 * Initial revision
74 * Revision 1.3 2000/08/23 22:09:08Z RSATTARI
75 * Isotel release 2.8 plus LSI applicable IS-95B changes.
76 * Revision 1.5 1999/01/07 16:29:24 mhayduk
77 * Added new "imsi class" element to structure to easily
78 * distinguish it.
79 *
80 * Revision 1.4 1998/05/27 17:16:28 scotvold
81 * Updated for Release 0.05.
82 *
83 * Revision 1.3 1998/03/30 23:26:03 mhayduk
84 * Release 0.03.
85 *
86 * Revision 1.1 1997/11/06 17:49:24 mhayduk
87 * Initial revision
88 *
89 *
90 ****************************************************************************
91 ****************************************************************************/
92
93
94#ifndef _IMSI_H_
95
96 #define _IMSI_H_ 1
97
98/*****************************************************************************
99 * Includes
100 ****************************************************************************/
101
102/*****************************************************************************
103 * Define
104 ****************************************************************************/
105 /* IMSI class length defintions, ie. addr_num range */
106 #define CP_CLASS1_MAX_SIZE 7
107 #define CP_IMSI_CLASS_0 0
108 #define CP_IMSI_CLASS_1 1
109
110 /* IMSI field widths are contained in field.h */
111
112/*****************************************************************************
113 * IMSI function prototypes
114 ****************************************************************************/
115
116#endif /*_IMSI_H_ */
117