File: mgfparse.h

package info (click to toggle)
tachyon 0.99~b6%2Bdsx-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,848 kB
  • sloc: ansic: 16,987; makefile: 737; sh: 275
file content (13 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * definitions for parsing MGF model files
 * 
 *  $Id: mgfparse.h,v 1.3 2011/02/02 06:10:39 johns Exp $
 */

#define MGF_NOERR     0
#define MGF_BADFILE   1
#define MGF_BADSYNTAX 2
#define MGF_EOF       3

unsigned int ParseMGF(char *mgfname, SceneHandle scene, int defaultflag);