home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sm099e.zip / example / example.c < prev    next >
C/C++ Source or Header  |  1997-01-26  |  752b  |  27 lines

  1. /* --------------------------------------------------------------------------
  2. ** This dummy program is just developed as an example source code for the
  3. ** Source Mapper (SM). The program is divided into more functions than
  4. ** actually makes sense. That's just to have functions enough to show you
  5. ** what SM can do.
  6. **
  7. ** Compiler options:
  8. ** OS2 = Compile for OS/2.
  9. ** DOS = Compile for grand old DOS.
  10. ** GUI = Compile GUI version (supported for both DOS and OS2 version).
  11. ** ------------------------------------------------------------------------ */
  12.  
  13.  
  14.  
  15. #include "example.h"
  16.  
  17.  
  18.  
  19. void main ( int iArgC, char *pcArgP[] )
  20. /* Program entry point.  */
  21. {
  22.    Initialize (iArgC, pcArgP, &Balls);
  23.    Run (&Balls);
  24.    Terminate ();
  25. }
  26.  
  27.