abis: Get the structs and values from libosmocore

Remove the forward declarations for functions and structs
that have been moved to libosmocore.
This commit is contained in:
Holger Hans Peter Freyther 2011-05-23 21:42:57 +02:00
parent 4e318f5938
commit f2c1f25612
2 changed files with 2 additions and 6 deletions

View File

@ -53,10 +53,6 @@ struct ipac_bcch_info {
uint8_t ca_list_si1[16];
};
extern const struct value_string abis_nm_adm_state_names[];
extern const struct value_string abis_nm_obj_class_names[];
extern const struct tlv_definition nm_att_tlvdef;
/* PUBLIC */
struct msgb;
@ -159,8 +155,6 @@ int ipac_parse_bcch_info(struct ipac_bcch_info *binf, uint8_t *buf);
const char *ipacc_testres_name(uint8_t res);
/* Functions calling into other code parts */
const char *nm_opstate_name(uint8_t os);
const char *nm_avail_name(uint8_t avail);
int nm_is_running(struct gsm_nm_state *s);
int abis_nm_vty_init(void);

View File

@ -26,6 +26,8 @@
#include <arpa/inet.h>
#include <osmocom/gsm/abis_nm.h>
#include <openbsc/gsm_data.h>
#include <osmocom/core/msgb.h>
#include <osmocom/gsm/tlv.h>