gtk/tools/fake-scope.h
Matthias Clasen 637713fe72 buildertool: Add a builder scope implementation
This will be used in future commits.
2022-10-19 13:36:14 -04:00

10 lines
266 B
C

#pragma once
#include <gtk.h>
G_DECLARE_FINAL_TYPE (FakeScope, fake_scope, FAKE, SCOPE, GtkBuilderCScope)
FakeScope * fake_scope_new (void);
GPtrArray * fake_scope_get_types (FakeScope *self);
GPtrArray * fake_scope_get_callbacks (FakeScope *self);