FaceGen 3 SDKs Reference
Loading...
Searching...
No Matches
EgtFileIOHdr.hpp
1//
2// Copyright (c) Singular Inversions Inc. 2002.
3//
4// Authors: John Leung
5// Created: March 7, 2002.
6//
7
8#ifndef EGTFILEIOHDR_HPP
9#define EGTFILEIOHDR_HPP
10
11#include "FgSerial.hpp"
12
13#define FFF_EGT_FILE_ID "FREGT003" // EGT file identifier
14
15namespace Fg {
16
18{
19 uint32 nrows;
20 uint32 ncols;
21 uint32 numSym;
22 uint32 numAsym;
23 uint32 basisKey;
24 char reserve[64-8-sizeof(uint32)*5];
25};
26
27}
28
29#endif
30