diff options
| author | Arslaan Pathan <[email protected]> | 2026-04-08 13:41:35 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-04-08 13:41:35 +1200 |
| commit | c9660a840256308d4dde40613a1af3296d3fdead (patch) | |
| tree | 13e3049ea6bc6d2606bffeced7dc1ead990a1169 /src/saffron_internal.h | |
| parent | 04ff8c0a6acc2cc9204492690b7f99f892ed439a (diff) | |
| download | saffron-c9660a840256308d4dde40613a1af3296d3fdead.tar.xz saffron-c9660a840256308d4dde40613a1af3296d3fdead.zip | |
what (i cannot put the commit message into words)
I added a lot of stuff, it dont really work fully yet but its very good stuff
Diffstat (limited to 'src/saffron_internal.h')
| -rw-r--r-- | src/saffron_internal.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/saffron_internal.h b/src/saffron_internal.h new file mode 100644 index 0000000..61d4195 --- /dev/null +++ b/src/saffron_internal.h @@ -0,0 +1,10 @@ +/* we could use #pragma once, but we don't because BACK IN MY DAY WE DIDNT HAVE PRAGMA ONCE!!! + * and also it's not in the C standard, if some lunatic compiles it with a custom standards-comformant compiler this is undefined behaviour + * therefore, my response is TOO BAD SO SAD */ +#ifndef SAFFRON_INTERNAL_H +#define SAFFRON_INTERNAL_H + +extern SaffronWindow **windows; +extern int window_count; + +#endif |
