Age | Commit message (Collapse) | Author | Files | Lines |
|
calls. This changes the generated RPC and IRPC calls to use the 'this'
object pointer instead of requiring the passing of the object on each
call. So typical usage is now:
var echo = echo_init();
var io = irpcObj();
status = echo.connect("ncacn_np:server");
assert(status.is_ok);
io.input.in_data = 7;
status = echo.AddOne(io);
assert(status.is_ok);
(This used to be commit f7b49ecd0868c1f0fec75b371f132bbf357ad8c6)
|
|
(This used to be commit 5c0a22167d3424573ede99937549d815d067f0bc)
|
|
(This used to be commit 26e1fdf63007e28468a05b18bede1e69981edc12)
|
|
representation prefix
to pidl itself. Useful for supporting other data representation types.
(This used to be commit 5af68a04763f39f2a9898155e2c82ed2ee646f36)
|
|
(This used to be commit 7384b3c4a1450ad63356dcf586e3a7e7335f8e6d)
|
|
callers to optionally supply an existing object to add the properties
to. So you can do:
var rpc = samr_init();
lsa_init(rpc);
and you end up with 'rpc' having both the samr and lsa functions and
constants available.
(This used to be commit 6a1ed328e27769bd52899fc2437a43fc17104eff)
|
|
(This used to be commit 78ef2349c7a1bff19fb86a41bf5c074a2dfcb222)
|
|
(This used to be commit cd33b5efc544345411db498b178fa532a9a2c82f)
|
|
generator.
(This used to be commit 5610838385ca00a944fb4765df1854954a3a81bc)
|
|
(This used to be commit 8637a85e6a349cce15a298154500921e9a0183a3)
|
|
(This used to be commit 94e338805de465a3ec7d82aa599f09adfcc06bd8)
|
|
Values that are deferred but don't contain deferred data don't
need NDR_BUFFERS
Parse::Pidl::Samba::NDR::Parser:
Only use manually written array access functions when the array
functions are faster then the autogenerated ones. Makes ndr_basic.c
a bit shorter.
(This used to be commit cad40815dcfb7cdcab13bd0cd204ef8711605ef3)
|
|
(This used to be commit e43ac10e36e289966fdf34a8c5b523cd7fbcb368)
|
|
- Fixes annoying array-of-pointers bug in pidl.
- No longer "inherit" alignment thru subcontexts
- Use "Image Object" as example DCOM object, rather then the "My Computer" object, which is built-in and can't be accessed remotely as far as I can see
(This used to be commit bd706d496405d274b68c1ee560211837a8e63009)
|
|
means we don't pollute the name space, and also makes for faster
startup times as we only create variables for the pipes that we use,
not all pipes
(This used to be commit 57d7a585e8162d21c7152952aa0cc7471968784f)
|
|
upstream sources. This makes it much easier to keep it up to date.
I will separate out the mpr code into lib/appweb/mpr next
(This used to be commit 52db7a052baeb0f11361ed69b71cb790039e3cc9)
|
|
enums
(This used to be commit 529370ed92f5a683ae7bd34d0cd2ce01c2bda81a)
|
|
code in pidl for ejs calls. This means that ejs_rpc_call() doesn't
need to scan the rpc tables for the right interface, and doesn't need
to scan for the call name
(This used to be commit 1c6b1102e5c2529206b917e7c6b279c4f63d0e9a)
|
|
(This used to be commit d5153d16e1630e85c05a19b2d279bb1100497be5)
|
|
(This used to be commit d1f754a0a34c5938579a605b4f113100e14bac3d)
|
|
(This used to be commit d64bffa17ea1c46d917e362d51741148b85fb97f)
|
|
functions we don't need. That is a lot of functions, as ejs is only
client side, so it only needs push functions for [out] vars, and pull
functions for [in] vars
added irpc and srvsvc IDL to list of available pipes.
(This used to be commit c7a9dbe70a39156a20e56b4dd732fd838437eecd)
|
|
(This used to be commit a6922ccd636a343ff13127db0f721e4f9296efb4)
|
|
(This used to be commit 1235333afbfab643ea35e9b43f6142da3f6a41d7)
|
|
- Only "use" pidl modules in the main executable when necessary
Try 'make install' in build/pidl to install the package (should work stand-alone).
(This used to be commit c620095692122a65ae1c5d85ca20468d4de93c54)
|