mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
9f068866e2
It is our current coding style.
12 lines
298 B
C
12 lines
298 B
C
#pragma once
|
|
|
|
#include <gtk/gtk.h>
|
|
#include "exampleappwin.h"
|
|
|
|
|
|
#define EXAMPLE_APP_PREFS_TYPE (example_app_prefs_get_type ())
|
|
G_DECLARE_FINAL_TYPE (ExampleAppPrefs, example_app_prefs, EXAMPLE, APP_PREFS, GtkDialog)
|
|
|
|
|
|
ExampleAppPrefs *example_app_prefs_new (ExampleAppWindow *win);
|