This commit is contained in:
Asger Geel Weirsøe
2025-11-30 21:08:42 +01:00
parent 8c08e33ba0
commit 382b5a489e
42 changed files with 2192 additions and 0 deletions

18
tests/module_test.c Normal file
View File

@@ -0,0 +1,18 @@
#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;
}