MX-Windows
version 1.0
(C) 1999 Achillefs Margaritis
axilmar@x-treme.gr
#include <std_disclaimer.h>
"I do not accept responsibility for any effects, adverse or otherwise,
that this code may have on you, your computer, your sanity, your dog, and
anything else that you can think of. Use it at your own risk."
Contents
Many thanks goes to Shawn Hargreaves and all the people for the excellent
Allegro library and to DJ Delorie and Co. for the free DJGPP compiler.
If you would like to make any bug reports, suggestions, contributions,
comments, etc feel free to mail me any time at
axilmar@x-treme.gr
What is MX-Windows ?
MX-Windows is a windowing kernel library. It has to do with the manipulation
of input/ouput events and windows. It does not provide any window objects
(like a button, a form etc); it does not provide any 'proc' behaviour functions
like the Allegro GUI. It is something like the X-Windows without any widget
set. It has been developed under DOS with DJGPP and Allegro 3.11.
Licence!
The library is FREE; the source code is FREE; you can modify it, hack it,
do WHAT EVER YOU LIKE with it, as long as you MENTION MY NAME in the credits.
I suppose you have read the standard Allegro disclaimer at the top, haven't
you?
Using the library
The library is initialized with the function
InitMX();
This function initializes Allegro and installs keyboard, timer and mouse.
It is neccessary to initialize the library by using this function so as
that events become functional.
go to top