diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2026-01-06 15:45:03 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2026-01-06 15:45:03 -0700 |
| commit | 09860c75bb129c70768692aaec3bd42d0b2735e3 (patch) | |
| tree | b0192d2779b26da22c169ac801b781362d10aacc /arken/include | |
| parent | 68dd63f6b3de774863051b66e609a0ca4f4ac2a1 (diff) | |
| download | montis-09860c75bb129c70768692aaec3bd42d0b2735e3.tar.gz montis-09860c75bb129c70768692aaec3bd42d0b2735e3.tar.bz2 montis-09860c75bb129c70768692aaec3bd42d0b2735e3.zip | |
[reorg] add "middleware" library called "liberebor"
Diffstat (limited to 'arken/include')
| -rw-r--r-- | arken/include/util.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/arken/include/util.h b/arken/include/util.h deleted file mode 100644 index 2ed2f70..0000000 --- a/arken/include/util.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef MONTIS_UTIL_H -#define MONTIS_UTIL_H - -/* - * Runtime helpers exposed to plugins. These operate on compositor state and - * are intended for direct FFI use from the Haskell plugin. - */ - -void *montis_plugin_toplevel_at(void *ctx, double lx, double ly); -void montis_plugin_get_toplevel_position(void *toplevel, double *x, double *y); -void montis_plugin_set_toplevel_position(void *toplevel, double x, double y); -void montis_plugin_get_toplevel_geometry(void *toplevel, double *x, double *y, - double *w, double *h); -void montis_plugin_set_toplevel_geometry(void *toplevel, double x, double y, - double w, double h); -void montis_plugin_focus_toplevel(void *toplevel); -void montis_plugin_warp_cursor(void *ctx, double lx, double ly); - -#endif /* MONTIS_UTIL_H */ |