aboutsummaryrefslogtreecommitdiffstats
path: root/telephony/sim_card.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:35 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:35 -0800
commitf721e3ac031f892af46f255a47d7f54a91317b30 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /telephony/sim_card.h
parentbae1bc39312d5019bd9a5b8d840a529213a69a17 (diff)
downloadexternal_qemu-f721e3ac031f892af46f255a47d7f54a91317b30.zip
external_qemu-f721e3ac031f892af46f255a47d7f54a91317b30.tar.gz
external_qemu-f721e3ac031f892af46f255a47d7f54a91317b30.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'telephony/sim_card.h')
-rw-r--r--telephony/sim_card.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/telephony/sim_card.h b/telephony/sim_card.h
deleted file mode 100644
index af78237..0000000
--- a/telephony/sim_card.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* Copyright (C) 2007-2008 The Android Open Source Project
-**
-** This software is licensed under the terms of the GNU General Public
-** License version 2, as published by the Free Software Foundation, and
-** may be copied, distributed, and modified under those terms.
-**
-** This program is distributed in the hope that it will be useful,
-** but WITHOUT ANY WARRANTY; without even the implied warranty of
-** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-** GNU General Public License for more details.
-*/
-#ifndef _android_sim_card_h
-#define _android_sim_card_h
-
-#include "gsm.h"
-
-typedef struct ASimCardRec_* ASimCard;
-
-extern ASimCard asimcard_create( void );
-extern void asimcard_destroy( ASimCard sim );
-
-typedef enum {
- A_SIM_STATUS_ABSENT = 0,
- A_SIM_STATUS_NOT_READY,
- A_SIM_STATUS_READY,
- A_SIM_STATUS_PIN,
- A_SIM_STATUS_PUK,
- A_SIM_STATUS_NETWORK_PERSONALIZATION
-} ASimStatus;
-
-extern ASimStatus asimcard_get_status( ASimCard sim );
-extern void asimcard_set_status( ASimCard sim, ASimStatus status );
-
-extern const char* asimcard_get_pin( ASimCard sim );
-extern const char* asimcard_get_puk( ASimCard sim );
-extern void asimcard_set_pin( ASimCard sim, const char* pin );
-extern void asimcard_set_puk( ASimCard sim, const char* puk );
-
-extern int asimcard_check_pin( ASimCard sim, const char* pin );
-extern int asimcard_check_puk( ASimCard sim, const char* puk, const char* pin );
-
-/* Restricted SIM Access command, as defined by 8.18 of 3GPP 27.007 */
-typedef enum {
- A_SIM_CMD_READ_BINARY = 176,
- A_SIM_CMD_READ_RECORD = 178,
- A_SIM_CMD_GET_RESPONSE = 192,
- A_SIM_CMD_UPDATE_BINARY = 214,
- A_SIM_CMD_UPDATE_RECORD = 220,
- A_SIM_CMD_STATUS = 242
-} ASimCommand;
-
-extern const char* asimcard_io( ASimCard sim, const char* cmd );
-
-#endif /* _android_sim_card_h */