File: test003.idl

package info (click to toggle)
camlidl 1.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,572 kB
  • sloc: ml: 5,236; ansic: 945; cpp: 908; makefile: 358; xml: 213; sh: 74
file content (20 lines) | stat: -rw-r--r-- 262 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
20
// --!! Toplevel struct typedefs


typedef struct __POINT
   {
     int x;
     int y;
   } Point;

typedef Point*  PPoint;
typedef PPoint* PPPoint;

// Same shape and tag, different type name.
typedef struct POINTa
   {
     int ax;
     int ay;
   } Point1;