home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / vos2-121.zip / v / appgen / vgcode.h < prev    next >
C/C++ Source or Header  |  1998-10-05  |  808b  |  28 lines

  1. //===============================================================
  2. // V Shell App Generator
  3. //
  4. // Copyright (C) 1995,1996  Bruce E. Wampler
  5. //
  6. // This file is part of the V C++ GUI Framework, and is covered
  7. // under the terms of the GNU Library General Public License,
  8. // Version 2. This library has NO WARRANTY. See the source file
  9. // v/srcx/vapp.cxx for more complete information about license terms.
  10. //===============================================================
  11.  
  12. #ifndef VGCODE_H
  13. #define VGCODE_H
  14.  
  15. #include "vgdefs.h"
  16.  
  17.   int genApp(vgOptions& op);
  18.   int genCmdw(vgOptions& op);
  19.   int genMDlg(vgOptions& op);
  20.   int genDlg(vgOptions& op);
  21.   int genCnv(vgOptions& op);
  22.   int genTextCnv(vgOptions& op);
  23.   int genOGLCnv(vgOptions& op);
  24.   int genMake(vgOptions& op);
  25.   int genProject(vgOptions& op);
  26.  
  27. #endif
  28.