2008-05-07 17:30:47 +02:00
- warn when union instances don't have a discriminant
2005-10-08 00:33:19 +00:00
- true multiple dimension array / strings in arrays support
2005-06-14 22:47:14 +00:00
- compatibility mode for generating MIDL-readable data:
- strip out pidl-specific properties
2005-07-18 23:58:59 +00:00
2007-03-04 14:16:52 +00:00
- make bitmap an optional attribute on enum
2005-07-19 23:02:08 +00:00
- support nested elements
2007-03-04 14:16:52 +00: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 00:33:19 +00:00
2005-12-24 21:57:51 +00:00
- --explain-ndr option that dumps out parse tree ?
2006-03-20 23:35:08 +00:00
2013-05-15 18:12:52 +02:00
- separate tables for NDR and DCE/RPC
2007-03-04 14:16:52 +00:00
- maybe no tables for NDR at all? we only need them for ndrdump
and that can use dlsym()
2006-03-25 20:51:41 +00:00
- allow data structures outside of interfaces
2006-05-25 19:34:05 +00:00
2006-06-08 15:20:05 +00:00
- mem_ctx in the interface rather than as struct ndr member.
2007-02-07 19:03:19 +00:00
- real typelibs
2007-02-08 23:54:31 +00: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 15:13:13 +02: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)