Files
gtk-ahfail/tests/module_test.c
Asger Geel Weirsøe 382b5a489e Code
2025-11-30 21:08:42 +01:00

19 lines
327 B
C

#include <stddef.h>
#include "ahfail/module.h"
int main(void) {
if (module_name[0] == '\0') {
return 1;
}
on_activation(NULL, 42);
on_window_create(NULL, NULL);
on_focus_change(NULL, NULL, NULL);
on_idle_show(NULL);
on_idle_hide(NULL);
on_window_destroy(NULL, NULL);
return 0;
}