Age | Commit message (Collapse) | Author | Files | Lines |
|
(This used to be commit 19d0560464304f79224a946278105edafb285453)
|
|
(This used to be commit 169d505e9e2285aedc21547e44986b8b841b8e37)
|
|
Python API.
(This used to be commit 652810ff46c6db9034e930d0fb018a02ee385f15)
|
|
(This used to be commit 685aab0c99c87386fee64c07d8b68c75652713c6)
|
|
(This used to be commit a3e22bbcea27580c31d44dfaae04c9eef83389d4)
|
|
(This used to be commit 51441376d37de01f7f4bd795947fc2c46c38e3f1)
|
|
(This used to be commit bb59f3084ff8ff99e5bd72abfaadcbb68110f9fa)
|
|
(This used to be commit 61f331e9748bf5b3a1120ef19f93790facf9f64c)
|
|
(This used to be commit aad07f482544107dbeb4c3c468ce7dd78c151849)
|
|
(This used to be commit f214206a36d8822e485f6f076c9f3f0bfc1e1df4)
|
|
(This used to be commit 07f52ca51c008a6b80fed5b03935e1c3241d08d5)
|
|
(This used to be commit 57c7b4e896116f06b39e0040ad386c561d76bd3d)
|
|
(This used to be commit da8b8364b06a79a10d4ebdc0e451463b3105730e)
|
|
(This used to be commit 761536a5e4dd3dbfacf1576d7092827cdeda897b)
|
|
client.
Guenther
(This used to be commit 8ca4b0b0942564afa70b2e8a6d67d65ea8b75e43)
|
|
Michael
(This used to be commit 85f707c6abc48739c0c3b423ac0b196d2b75e40c)
|
|
This removes tons of warnings
warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result
for me. Lots of that kind left though :-)
(This used to be commit ba29219ea243cc217ab3522b036a82ff8dfeedc8)
|
|
(This used to be commit d1aa25249d64513f785430cab7437b5c7ca8db27)
|
|
(This used to be commit 8a8ed4fae849a2cc565a1ff77b2208a4cd6b1edb)
|
|
'foo / 5 * sizeof(bar)' isn't the same as
'(foo / 2) * sizeof(bar)'.
metze
(This used to be commit a496abc4042a98835d485769e0972826da161984)
|
|
(This used to be commit ec8bd3991f76cf8746cf77c277c3491725711f9d)
|
|
metze
(This used to be commit 99d6f49340d6f190ac318af939eeec17c29f1bbd)
|
|
(This used to be commit c9c115647893478e21134f8c703e0f52e2478882)
|
|
The memory allocation of embedded "ref" pointers needs to be the
same as for all other embedded pointers.
metze
(This used to be commit 6b3817c2250b94307ffcbd9f8eeb9a593eb7a82d)
|
|
The 2nd or higher level of wire pointers needs to be marked as deferred.
metze
(This used to be commit d7970d70329e0d4f9de30ccfcedd03e583817fa2)
|
|
Only the first level gets the pointer type from the
pointer property, the others get them from
the pointer_default() interface property
see http://msdn2.microsoft.com/en-us/library/aa378984(VS.85).aspx
(Here they talk about the rightmost pointer, but testing shows
they mean the leftmost pointer.)
metze
(This used to be commit aa8518521b2a6a7110c84c4981c53acce7389ee9)
|
|
metze
(This used to be commit 145d6c8ea0eafc69cdeca45fbf296148b890133d)
|
|
When we have "*r->out.ous"
(char ***ous, a pointer to a pointer to an array of pointers).
we need to use "(*r->out.ous)[3]" to access the 3rd
element of the array "*r->out.ous[3]" was generated before,
but that's the same as "*(r->out.ous[3])" which would mean
the array would apply to a different level.
This patch prepares support for:
[out,ref,size_is(,num)] [string,charset(UTF16)] uint16 ***names;
It means a [ref] pointer to a [unique] pointer to an array
of [unique] pointers which point to an UTF16 string.
metze
(This used to be commit ec0ee2aa5f4bef32f09a426d91c28c985f843038)
|
|
uint32 num;
nstring strings[num];
this should use 'r->strings' instead of
'*r->strings' as the pointer to the array.
metze
(This used to be commit 7c7acae817cd00ab5c915742338b019af79e9193)
|
|
metze
(This used to be commit 26d7f5bf96cd7e950ceb532402afd6b8a58871ea)
|
|
8ebf16c0741085fa769fcc2929f275ab49b1ea5d Works!!!...pidl/Samba4::NDR::Parser: fix support for embedded "ref" pointers
6fcf2456d0e81898b5779ef1650f38b4c5363a80 WORKS!!!...pidl/NDR: fix handling of multilevel pointers in function elements
0569139ca2960ec5478829c3e66f7ff69bdb55cd LOOKS OK... pidl: get the pointer types correct when an element has multiple pointe
rs
13afc89a87716063180723f0e9cb4f76daca837e CHECKED... pidl/Samba4::NDR::Parser: correctly get the name of an array element
29c104944bcad30c6a2a3fa70d527bf0ee8969de CHECKED... TODO:MSG pidl/Samba4::NDR::Parser: fix ...
3369015f5d8c425e1a9f9d861471028f03f163bb CHECKED... pidl/Samba4::NDR::Parser: move logic for extra get_pointer_of() into a f
unction
metze
(This used to be commit 0bcc8e53d1470ba9dfe93e5d6925b8f4c20c7c66)
|
|
The memory allocation of embedded "ref" pointers needs to be the
same as for all other embedded pointers.
metze
(This used to be commit 8ebf16c0741085fa769fcc2929f275ab49b1ea5d)
|
|
The 2nd or higher level of wire pointers needs to be marked as deferred.
metze
(This used to be commit 6fcf2456d0e81898b5779ef1650f38b4c5363a80)
|
|
pointers
Only the first level gets the pointer type from the
pointer property, the others get them from
the pointer_default() interface property
see http://msdn2.microsoft.com/en-us/library/aa378984(VS.85).aspx
(Here they talk about the rightmost pointer, but testing shows
they mean the leftmost pointer.)
metze
(This used to be commit 0569139ca2960ec5478829c3e66f7ff69bdb55cd)
|
|
When we have "*r->out.ous"
(char ***ous, a pointer to a pointer to an array).
we need to use "(*r->out.ous)[3]" to access the 3rd
element of the array "*r->out.ous[3]" was generated before,
but that's the same as "*(r->out.ous[3])".
metze
(This used to be commit 13afc89a87716063180723f0e9cb4f76daca837e)
|
|
metze
(This used to be commit 29c104944bcad30c6a2a3fa70d527bf0ee8969de)
|
|
into a function
metze
(This used to be commit 3369015f5d8c425e1a9f9d861471028f03f163bb)
|
|
metze
(This used to be commit 3c191981436ab3f7dd166a87875ffbac127fbdf5)
|
|
metze
(This used to be commit fdf9bcb163516f7d96675ae0dce2917afb8f86d3)
|
|
flags into one function
metze
(This used to be commit 74bf021aa7016ace02a0238e71573f18016e3722)
|
|
AllocateArrayLevel()
metze
(This used to be commit c630bece38eed3278466c2934763fcd8dcfb0610)
|
|
metze
(This used to be commit 3131847cb67dadd8ee6fcbca5055927b8ba8a219)
|
|
metze
(This used to be commit dd77fc45eee2dde7bdd31a2e39387e94cec158aa)
|
|
twice
metze
(This used to be commit c1ac13ee12d6d7e41b3700f207c9a8811bb05cd4)
|
|
(This used to be commit ed1e58e8b35bc971451f4e0a357daa903cd7820d)
|
|
(This used to be commit 5b2ea43ed8613ac10ebe7feda0cf070c8079137a)
|
|
(This used to be commit 6a9827454aaf4279ee85dc5d99d10f14e4c09eae)
|
|
doesn't regress again.
(This used to be commit 0e036948307c8ca5013e20a17a10d109830e4df1)
|
|
(This used to be commit cb2700094fc1fc3887d5254e5d42e035deefa5b9)
|
|
(This used to be commit dee64344fb13aaed38a550ebb4048d0fa526d5b6)
|