2008-05-07 19:30:47 +04:00
- warn when union instances don't have a discriminant
2005-10-08 04:33:19 +04:00
- true multiple dimension array / strings in arrays support
2005-06-15 02:47:14 +04:00
- compatibility mode for generating MIDL-readable data:
- strip out pidl-specific properties
2005-07-19 03:58:59 +04:00
2007-03-04 17:16:52 +03:00
- make bitmap an optional attribute on enum
2005-07-20 03:02:08 +04:00
- support nested elements
2007-03-04 17:16:52 +03:00
- support typedefs properly (e.g. allow "typedef void **bla;")
- make typedefs generate real typedefs
- improve represent_as(): allow it to be used for arrays and other complex
types
2005-10-08 04:33:19 +04:00
2005-12-25 00:57:51 +03:00
- --explain-ndr option that dumps out parse tree ?
2006-03-21 02:35:08 +03:00
2013-05-15 20:12:52 +04:00
- separate tables for NDR and DCE/RPC
2007-03-04 17:16:52 +03:00
- maybe no tables for NDR at all? we only need them for ndrdump
and that can use dlsym()
2006-03-25 23:51:41 +03:00
- allow data structures outside of interfaces
2006-05-25 23:34:05 +04:00
2006-06-08 19:20:05 +04:00
- mem_ctx in the interface rather than as struct ndr member.
2007-02-07 22:03:19 +03:00
- real typelibs
2007-02-09 02:54:31 +03:00
- fix [in,out] handling and allocation for samba3:
- add inout
- make NULL to mean "allocate me"
- remove NDR_AUTO_REF_ALLOC flag
- automatic test generator based on IDL pointer types
2008-05-22 17:13:13 +04:00
- support converting structs to tuples in Python rather than objects
- convert structs with a single mattering member to that member directly, e.g.:
struct bar {
int size;
[size_is(size)] uint32 *array;
};
should be converted to an array of uint32's
- python: fill in size members automatically in some places if the struct isn't being returned
(so we don't have to cope with the array growing)