diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-13 11:59:51 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:04 +0100 |
commit | 4d3a61d58b3534a1abe1fe2b290832e237068728 (patch) | |
tree | 0c31b833a7f88db6f5c20ae53fd987f936c9977b /src/mm-port.h | |
parent | ffdb034413d281361803ebb52fcbb4f569e1b9f2 (diff) |
build: generate libserial-specific enum types
Diffstat (limited to 'src/mm-port.h')
-rw-r--r-- | src/mm-port.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mm-port.h b/src/mm-port.h index 21e2f605..ea5ebad8 100644 --- a/src/mm-port.h +++ b/src/mm-port.h @@ -19,7 +19,7 @@ #include <glib.h> #include <glib-object.h> -typedef enum { +typedef enum { /*< underscore_name=mm_port_subsys >*/ MM_PORT_SUBSYS_UNKNOWN = 0x0, MM_PORT_SUBSYS_TTY, MM_PORT_SUBSYS_NET, @@ -27,7 +27,7 @@ typedef enum { MM_PORT_SUBSYS_LAST = MM_PORT_SUBSYS_NET } MMPortSubsys; -typedef enum { +typedef enum { /*< underscore_name=mm_port_type >*/ MM_PORT_TYPE_UNKNOWN = 0x0, MM_PORT_TYPE_AT, MM_PORT_TYPE_IGNORED, @@ -79,4 +79,3 @@ const char * mm_port_type_to_name (MMPortType ptype); const char * mm_port_subsys_to_name (MMPortSubsys psubsys); #endif /* MM_PORT_H */ - |