s3-loadparm: Fix resume command typo for "printing = vlp".
[Samba.git] / source / pidl / TODO
blob17b4d9d8430d4e0185ea680c5bd95887194d9c09
1 - true multiple dimension array / strings in arrays support
3 - compatibility mode for generating MIDL-readable data:
4  - strip out pidl-specific properties
6 - make bitmap an optional attribute on enum
7 - support nested elements
8 - support typedefs properly (e.g. allow "typedef void **bla;")
9 - make typedefs generate real typedefs
10 - improve represent_as(): allow it to be used for arrays and other complex
11   types
13 - --explain-ndr option that dumps out parse tree ?
15 - seperate tables for NDR and DCE/RPC
16  - maybe no tables for NDR at all? we only need them for ndrdump
17    and that can use dlsym()
19 - allow data structures outside of interfaces
21 - mem_ctx in the interface rather than as struct ndr member.
23 - real typelibs
25 - fix [in,out] handling and allocation for samba3:
26  - add inout
27  - make NULL to mean "allocate me"
28  - remove NDR_AUTO_REF_ALLOC flag
30 - automatic test generator based on IDL pointer types
32 - support converting structs to tuples in Python rather than objects
33 - convert structs with a single mattering member to that member directly, e.g.:
34   struct bar {
35     int size;
36         [size_is(size)] uint32 *array;
37   };
39   should be converted to an array of uint32's
41 - python: fill in size members automatically in some places if the struct isn't being returned
42   (so we don't have to cope with the array growing)