File: test029.idl

package info (click to toggle)
camlidl 1.09-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,212 kB
  • sloc: ml: 4,982; ansic: 942; cpp: 908; makefile: 357; xml: 213; sh: 74
file content (8 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
//!! More dependent parameter tests
interface Test {
  void count([out] long* sizeArray);
  void arrayIn( [in]long sizeIn,
                [in, size_is(sizeIn)]long aIn[]);
  void arrayOut( [in, out]long* psizeOut,
  	         [out, size_is(*psizeOut)] long aOut[]);
}