File: stdint.idl

package info (click to toggle)
camlidl 1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,596 kB
  • sloc: ml: 5,238; ansic: 945; cpp: 908; makefile: 359; xml: 213; sh: 74
file content (19 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
interface foo {
    struct bar {
        int8  small_ish;    /* <signed_tiny_int> */
        uint8 usmall_ish;   /* <unsigned_tiny_int> */

        int16  short_ish;   /* <signed_short_int> */
        uint16 ushort_ish;  /* <unsigned_short_int> */

        int32  long_ish;    /* <signed_long_int> */
        uint32 ulong_ish;   /* <unsigned_long_int> */

        int64  llong_ish;   /* <signed_longlong_int> */
        uint64 ullong_ish;  /* <unsigned_longlong_int> */

        __int64          llong_compat;  /* non-standard */
        signed   __int64 llong2_compat; /* non-standard */
        unsigned __int64 ullong_compat; /* non-standard */
    };
}