home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 31
/
CDASC_31_1996_juillet_aout.iso
/
vrac_os2
/
sm099c.zip
/
EXAMPLE
/
EXAMPLE.C
< prev
next >
Wrap
C/C++ Source or Header
|
1996-03-03
|
752b
|
27 lines
/* --------------------------------------------------------------------------
** 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 ();
}