Files correlati : Ricompilazione Demo : [ ] Commento : Aggiunti i sorgenti per Greenleaf Math Library (gfm.dll) git-svn-id: svn://10.65.10.50/trunk@10079 c028cbd2-c16b-5b4b-a496-9718f37d4682
26 lines
587 B
C
Executable File
26 lines
587 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 union {
|
|
IDEC dc;
|
|
LDEC ls;
|
|
} DEC;
|
|
|
|
typedef DEC DECP[1];
|
|
|
|
#endif /* __GFD_H */
|