home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / ev_201.zip / MAIN.CPP < prev    next >
C/C++ Source or Header  |  1993-07-03  |  1KB  |  45 lines

  1. /*
  2.    Project       : EasyVision
  3.    Version       : 2.0
  4.    Revision Date : July 3rd, 1993
  5.    Author(s)     : Remy Gendron
  6.  
  7.    Description   : Main source file template. (C++)
  8. */
  9.  
  10.  
  11. // Headers ------------------------------------------------------------------
  12.  
  13. #include <stdio.h>                                      // System's libraries
  14. #pragma hdrstop
  15.  
  16.  
  17. // Macros -------------------------------------------------------------------
  18.  
  19. #include "stdmacro.h"
  20. #include "prjmacro.h"
  21.  
  22.  
  23. // TypeDefs -----------------------------------------------------------------
  24.  
  25. #include "stdtype.h"
  26. #include "prjtype.h"
  27.  
  28.  
  29. // --------------------------------------------------------------------------
  30.  
  31. int main
  32. (
  33.    int  argc,                             // Number of command line arguments
  34.    char **argv                     // Array of ptrs to command line arguments
  35. )
  36.  
  37. {
  38.  
  39.  
  40.    return 0 ;                                   // Program normal termination
  41. }                                                                 // End main
  42.  
  43.  
  44. // End Source File ----------------------------------------------------------
  45.