Tag
Hash :
22b0415a
Author :
Date :
2015-04-16T16:04:06
os400: fix various ILE/RPG types definitions. Adjust build scripts.
- A typo caused an undefined symbol reference.
- A structure field name did not match the corresponding C name due to a typo.
- Some structured fields were not properly aligned.
- The long/ulong types were wrongly mapped to 64-bit types.
- A typo in a /include directive caused a compilation error.
- Doc files copy now converts from UTF-8 and split long lines.
- Adjust /include file name mapping translation for proper prefix handling.
* Eqivalent of C data types.
*
* Copy: See Copyright for the status of this software.
*
* Author: Patrick Monnerat <pm@datasphere.ch>, DATASPHERE S.A.
/if not defined(XMLTYPESC_H__)
/define XMLTYPESC_H__
d xmlCchar s 3i 0 based(######typedef######)
d xmlCuchar s 3u 0 based(######typedef######)
d xmlCshort s 5i 0 based(######typedef######)
d xmlCushort s 5u 0 based(######typedef######)
d xmlCint s 10i 0 based(######typedef######)
d xmlCuInt s 10u 0 based(######typedef######)
d xmlClong s 10i 0 based(######typedef######)
d xmlCulong s 10u 0 based(######typedef######)
d xmlClonglong s 20i 0 based(######typedef######)
d xmlCulonglong s 20u 0 based(######typedef######)
d xmlCenum s 10i 0 based(######typedef######)
d xmlCssize_t s 10i 0 based(######typedef######)
d xmlCsize_t s 10u 0 based(######typedef######)
/endif