diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2014-07-06 16:50:30 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2014-07-06 16:55:29 +0200 |
commit | 5358d6fea0b27ae4c71de6ce0b4d71060906216e (patch) | |
tree | 6c70cee0802eacd9873c70a70cf40a1edc46a0c2 /src/mm-sim-mbim.h | |
parent | a29382be70ead81b31a1e7f14ad6fc0984082536 (diff) |
sim: rename 'MMSim' to 'MMBaseSim'
Just so that we don't have same header names in src/ and /libmm-glib.
Diffstat (limited to 'src/mm-sim-mbim.h')
-rw-r--r-- | src/mm-sim-mbim.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mm-sim-mbim.h b/src/mm-sim-mbim.h index 7cbf2e4a..f7bf6ab1 100644 --- a/src/mm-sim-mbim.h +++ b/src/mm-sim-mbim.h @@ -19,7 +19,7 @@ #include <glib.h> #include <glib-object.h> -#include "mm-sim.h" +#include "mm-base-sim.h" #define MM_TYPE_SIM_MBIM (mm_sim_mbim_get_type ()) #define MM_SIM_MBIM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_SIM_MBIM, MMSimMbim)) @@ -32,20 +32,20 @@ typedef struct _MMSimMbim MMSimMbim; typedef struct _MMSimMbimClass MMSimMbimClass; struct _MMSimMbim { - MMSim parent; + MMBaseSim parent; }; struct _MMSimMbimClass { - MMSimClass parent; + MMBaseSimClass parent; }; GType mm_sim_mbim_get_type (void); -void mm_sim_mbim_new (MMBaseModem *modem, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -MMSim *mm_sim_mbim_new_finish (GAsyncResult *res, - GError **error); +void mm_sim_mbim_new (MMBaseModem *modem, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +MMBaseSim *mm_sim_mbim_new_finish (GAsyncResult *res, + GError **error); #endif /* MM_SIM_MBIM_H */ |