gplugin/gplugin

Parents 2f437170b1d7
Children c96214250615
glib-mkenums is super sensitive about the format of these comments so don't let clang-format mess with it
--- a/gplugin/gplugin-plugin.h Wed Feb 26 03:13:57 2020 -0600
+++ b/gplugin/gplugin-plugin.h Wed Feb 26 04:03:12 2020 -0600
@@ -25,19 +25,19 @@
#include <glib-object.h>
#include <glib.h>
-typedef enum /*<
- prefix=GPLUGIN_PLUGIN_STATE,underscore_name=GPLUGIN_PLUGIN_STATE
- >*/
-{ GPLUGIN_PLUGIN_STATE_UNKNOWN = -1,
- GPLUGIN_PLUGIN_STATE_ERROR = 0,
- GPLUGIN_PLUGIN_STATE_QUERIED,
- GPLUGIN_PLUGIN_STATE_REQUERY,
- GPLUGIN_PLUGIN_STATE_LOADED,
- GPLUGIN_PLUGIN_STATE_LOAD_FAILED,
+/* clang-format off */
+typedef enum /*< prefix=GPLUGIN_PLUGIN_STATE,underscore_name=GPLUGIN_PLUGIN_STATE >*/ {
+ GPLUGIN_PLUGIN_STATE_UNKNOWN = -1,
+ GPLUGIN_PLUGIN_STATE_ERROR = 0,
+ GPLUGIN_PLUGIN_STATE_QUERIED,
+ GPLUGIN_PLUGIN_STATE_REQUERY,
+ GPLUGIN_PLUGIN_STATE_LOADED,
+ GPLUGIN_PLUGIN_STATE_LOAD_FAILED,
- /*< private >*/
- GPLUGIN_PLUGIN_STATES, /*< skip >*/
+ /*< private >*/
+ GPLUGIN_PLUGIN_STATES, /*< skip >*/
} GPluginPluginState;
+/* clang-format on */
G_BEGIN_DECLS