blob: 8b02226d84ddc7f7a572181c1f82ff3a1c9d04c9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _LGSM_PIN_H
#define _LGSM_PIN_H
extern const char *lgsm_pin_name(enum gsmd_pin_type ptype);
extern int lgsm_pin(struct lgsm_handle *lh, unsigned int type,
const char *pin, const char *newpin);
/* Get PIN status information */
extern int lgsm_pin_status(struct lgsm_handle *lh);
#endif
|