home *** CD-ROM | disk | FTP | other *** search
- /* --------------------------------------------------------------------------
- ** This dummy program is just developed as an example source code for the
- ** Source Mapper (SM). The program is divided into more functions than
- ** actually makes sense. That's just to have functions enough to show you
- ** what SM can do.
- **
- ** Compiler options:
- ** OS2 = Compile for OS/2.
- ** DOS = Compile for grand old DOS.
- ** GUI = Compile GUI version (supported for both DOS and OS2 version).
- ** ------------------------------------------------------------------------ */
-
-
-
- #include "example.h"
-
-
-
- void main ( int iArgC, char *pcArgP[] )
- /* Program entry point. */
- {
- Initialize (iArgC, pcArgP, &Balls);
- Run (&Balls);
- Terminate ();
- }
-
-