File: vgcode.h

package info (click to toggle)
v1 1.20-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,240 kB
  • ctags: 9,439
  • sloc: cpp: 48,033; ansic: 8,939; makefile: 1,369; sh: 30
file content (26 lines) | stat: -rw-r--r-- 775 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//===============================================================
// V Shell App Generator
//
// Copyright (C) 1995,1996  Bruce E. Wampler
//
// This file is part of the V C++ GUI Framework, and is covered
// under the terms of the GNU Library General Public License,
// Version 2. This library has NO WARRANTY. See the source file
// v/srcx/vapp.cxx for more complete information about license terms.
//===============================================================

#ifndef VGCODE_H
#define VGCODE_H

#include "vgdefs.h"

  int genApp(vgOptions& op);
  int genCmdw(vgOptions& op);
  int genMDlg(vgOptions& op);
  int genDlg(vgOptions& op);
  int genCnv(vgOptions& op);
  int genTextCnv(vgOptions& op);
  int genOGLCnv(vgOptions& op);
  int genMake(vgOptions& op);

#endif