luca ac8ecb0b9f Patch level :2.0 aga 370
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :sistemate le librerie gfm (allineate a partners version)


git-svn-id: svn://10.65.10.50/trunk@10750 c028cbd2-c16b-5b4b-a496-9718f37d4682
2003-01-17 12:20:25 +00:00

34 lines
815 B
C
Executable File

#ifndef __GFD_H
#define __GFD_H
typedef struct idec {
SHORT attr;
SHORT id;
unsigned SHORT sl[4]; /* 80-bit signed number */
short msd; /* most significant word */
} IDEC;
typedef struct ldec {
SHORT lattr; /* redef's for long's */
SHORT lid;
unsigned long lsl[2];
short lmsd;
} LDEC;
typedef struct hdec {
short lattr; /* redef's for long's */
short lid;
unsigned __int64 hsl;
short lmsd;
} HDEC;
typedef union {
IDEC dc;
LDEC ls;
HDEC hs;
} DEC;
typedef DEC DECP[1];
#endif /* __GFD_H */