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