diff options
| author | Roberto Esteves <contact@robertoesteves.dev> | 2025-11-22 16:35:06 +0000 |
|---|---|---|
| committer | Roberto Esteves <contact@robertoesteves.dev> | 2025-11-22 16:35:06 +0000 |
| commit | e7c2ec9719349f7a20dd1d4854869c10d8836a11 (patch) | |
| tree | af5b34d8d21cabd4ec6d4206ce5a6fd4651de56c /immediate/immediate.c | |
| parent | d84537c52f537920369618028f84b48296811fd0 (diff) | |
Diffstat (limited to 'immediate/immediate.c')
| -rw-r--r-- | immediate/immediate.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/immediate/immediate.c b/immediate/immediate.c new file mode 100644 index 0000000..814c83f --- /dev/null +++ b/immediate/immediate.c @@ -0,0 +1,17 @@ +#include "immediate/immediate.h" + +static RuimToplevelBackend backend; + +int RuimInit(void) { + RuimToplevelBackendInit(&backend); + + return 0; +} + +void RuimBegin(void) {} +void RuimEnd(void) {} + +int RuimWaitForEvent(void) { return 1; } + +void RuimBeginWindow(const char *title, RuimCoordinates *coordinates) {} +void RuimEndWindow(void) {} |