diff options
author | Dan Winship <danw@gnome.org> | 2012-02-08 12:56:52 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2012-02-15 11:42:15 -0500 |
commit | 839eab556419b6af5046e44361bdcf14fe028d27 (patch) | |
tree | b9183f7d2cc207e7741960a2120756043a95f847 /libnm-glib/nm-secret-agent.h | |
parent | 0b57cc68fd4a146c9fe255f14c667ab306266c0c (diff) |
Use glib-mkenums to generate enum types
Rather than generating enum classes by hand (and complaining in each
file that "this should really be standard"), use glib-mkenums.
Unfortunately, we need a very new version of glib-mkenums in order to
deal with NM's naming conventions and to fix a few other bugs, so just
import that into the source tree temporarily.
Also, to simplify the use of glib-mkenums, import Makefile.glib from
https://bugzilla.gnome.org/654395.
To avoid having to run glib-mkenums for every subdirectory of src/,
add a new "generated" directory, and put the generated enums files
there.
Finally, use Makefile.glib for marshallers too, and generate separate
ones for libnm-glib and NetworkManager.
Diffstat (limited to 'libnm-glib/nm-secret-agent.h')
-rw-r--r-- | libnm-glib/nm-secret-agent.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libnm-glib/nm-secret-agent.h b/libnm-glib/nm-secret-agent.h index 33ef22876..6a513baed 100644 --- a/libnm-glib/nm-secret-agent.h +++ b/libnm-glib/nm-secret-agent.h @@ -26,10 +26,8 @@ G_BEGIN_DECLS #define NM_SECRET_AGENT_ERROR (nm_secret_agent_error_quark ()) -#define NM_TYPE_SECRET_AGENT_ERROR (nm_secret_agent_error_get_type ()) GQuark nm_secret_agent_error_quark (void); -GType nm_secret_agent_error_get_type (void); typedef enum { NM_SECRET_AGENT_ERROR_NOT_AUTHORIZED = 0, |