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

  1. #if !defined (MODULE_NAME)        /* Prevents multiple declarations errors */
  2. #define MODULE_NAME
  3.  
  4.  
  5. /*
  6.    Module        : MODULE.H
  7.    Version       : 2.0
  8.    Revision date : July 3rd, 1993
  9.    Author(s)     : Remy Gendron
  10.  
  11.    Description   : Module file template.
  12. */
  13.  
  14.  
  15. /* Headers --------------------------------------------------------------- */
  16.  
  17.  
  18. /* Macros ---------------------------------------------------------------- */
  19.  
  20. #include "stdmacro.h"                        /* Standard macro definitions */
  21. #include "prjmacro.h"                  /* This project's macro definitions */
  22.  
  23.  
  24. /* TypeDefs -------------------------------------------------------------- */
  25.  
  26. #include "stdtype.h"                          /* Standard type definitions */
  27. #include "prjtype.h"                    /* This project's type definitions */
  28.  
  29.  
  30. /* Prototypes ------------------------------------------------------------ */
  31.  
  32. #ifdef __cplusplus                     /* Enables linking with C++ modules */
  33. extern "C" {
  34. #endif
  35.  
  36. return_type function_name                                   /* Description */
  37. (
  38.    type param,                                              /* Description */
  39.    type param,                                              /* Description */
  40.    ...
  41. ) ;
  42.  
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47.  
  48.  
  49. /* End Header File ------------------------------------------------------- */
  50.  
  51. #endif
  52.