Problems with C\Front and Field Types

I have a smaaaall problem [:)] I can’t get right Field Type, for example if field type in Navision is Integer, in C\Front returns 34560. [red] DBL_U16 p = (*DBL_FieldType)(hTable, 1); printf(" %u\n", p); [red] The same is with other types. C\Front and Navision version the same. I tried change unsigned int to int, double and so on, nothing helps. Have somebody any ideas.[?] Dima

Everything is OK. Check “C/Front Refernce guide” integr is : #define DBL_Type_S32 (135 * 0x100) => 135 * 256 => 34560

Thanks Daliau, Sometimes it is very useful to read Appendix in books. [:D] Thanks Dima