Tin-C-UiL (Pronounced tinkle) - is a lightwieight GUI wrapper Library for C Compilers. It doesn't require any
additional library to compile your programs on Microsoft Windows; It is totally based on pure Windows API.
It is decendant of old GUI C++ Library radc++. We also have provided old downloads and old documentation you may be interested in.
It heavily relies on macros to make code look easier to understand and compact. It is not yet production ready. It is 100% free of charge for any use eitehr personal and/or commercial.
A simple Tinkle program - Technically speaking, it's' 2 lines of code...
#include <tinkle.h>
TINKLE_MAIN
(
_form("Hello C'ers", 0,0, 800, 600, form_simple); //Crate a window
)