home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / adaptor / src / include / normallo.h < prev    next >
C/C++ Source or Header  |  1994-01-02  |  406b  |  24 lines

  1. # ifndef yyNormalLoop
  2. # define yyNormalLoop
  3.  
  4. # if defined __STDC__ | defined __cplusplus
  5. # define ARGS(parameters)    parameters
  6. # else
  7. # define ARGS(parameters)    ()
  8. # endif
  9.  
  10. # ifndef bool
  11. # define bool char
  12. # endif
  13.  
  14. # include "Tree.h"
  15. # include "Definiti.h"
  16.  
  17.  
  18. extern void NormalLoop ARGS((tTree loop, int inc));
  19.  
  20. extern void BeginNormalLoop ();
  21. extern void CloseNormalLoop ();
  22.  
  23. # endif
  24.