ARCPARAMS: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 6: | Line 6: | ||
LONG lR; | LONG lR; | ||
LONG lS; | LONG lS; | ||
== C Declaration Method == | == C Declaration Method == | ||
typedef struct | typedef struct | ||
== Fields == | == Fields == | ||
;lP : P coefficient | ;lP : P coefficient | ||
;lQ : Q coefficient | ;lQ : Q coefficient | ||
;lR : R coefficient | ;lR : R coefficient | ||
;lS : S coefficient | ;lS : S coefficient | ||
== Example Code == | == Example Code == |
Revision as of 16:45, 8 February 2020
Arc-parameters structure.
Type
LONG lP; LONG lQ; LONG lR; LONG lS;
C Declaration Method
typedef struct
Fields
- lP
- P coefficient
- lQ
- Q coefficient
- lR
- R coefficient
- lS
- S coefficient
Example Code
typedef struct _ARCPARAMS { LONG lP; /* P coefficient. */ LONG lQ; /* Q coefficient. */ LONG lR; /* R coefficient. */ LONG lS; /* S coefficient. */ } ARCPARAMS; typedef ARCPARAMS * PARCPARAMS ;