mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-06 04:28:29 +02:00
device: skip generating enums for internal flags with glib-mkenums
(cherry picked from commit 6cdcf36a3d)
This commit is contained in:
parent
2edd273096
commit
dfebbdaef1
1 changed files with 2 additions and 2 deletions
|
|
@ -90,7 +90,7 @@ typedef enum NMActStageReturn NMActStageReturn;
|
||||||
* a condition, so that adding a flag might make a connection available that would
|
* a condition, so that adding a flag might make a connection available that would
|
||||||
* not be available otherwise. Adding a flag should never make a connection
|
* not be available otherwise. Adding a flag should never make a connection
|
||||||
* not available if it would be available otherwise. */
|
* not available if it would be available otherwise. */
|
||||||
typedef enum {
|
typedef enum { /*< skip >*/
|
||||||
NM_DEVICE_CHECK_CON_AVAILABLE_NONE = 0,
|
NM_DEVICE_CHECK_CON_AVAILABLE_NONE = 0,
|
||||||
|
|
||||||
_NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST_WAITING_CARRIER = (1L << 0),
|
_NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST_WAITING_CARRIER = (1L << 0),
|
||||||
|
|
@ -108,7 +108,7 @@ struct _NMDevice {
|
||||||
|
|
||||||
/* The flags have an relaxing meaning, that means, specifying more flags, can make
|
/* The flags have an relaxing meaning, that means, specifying more flags, can make
|
||||||
* a device appear more available. It can never make a device less available. */
|
* a device appear more available. It can never make a device less available. */
|
||||||
typedef enum {
|
typedef enum { /*< skip >*/
|
||||||
NM_DEVICE_CHECK_DEV_AVAILABLE_NONE = 0,
|
NM_DEVICE_CHECK_DEV_AVAILABLE_NONE = 0,
|
||||||
NM_DEVICE_CHECK_DEV_AVAILABLE_IGNORE_CARRIER = (1L << 0),
|
NM_DEVICE_CHECK_DEV_AVAILABLE_IGNORE_CARRIER = (1L << 0),
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue