aboutsummaryrefslogtreecommitdiff
path: root/frontend/plugin_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/plugin_lib.c')
-rw-r--r--frontend/plugin_lib.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c
index 0ca45ce..9f9e958 100644
--- a/frontend/plugin_lib.c
+++ b/frontend/plugin_lib.c
@@ -189,3 +189,15 @@ void pl_text_out16(int x, int y, const char *texto, ...)
pl_text_out16_(x, y, buffer);
}
+static void pl_get_layer_pos(int *x, int *y, int *w, int *h)
+{
+ *x = g_layer_x;
+ *y = g_layer_y;
+ *w = g_layer_w;
+ *h = g_layer_h;
+}
+
+const struct rearmed_cbs pl_rearmed_cbs = {
+ pl_get_layer_pos,
+};
+