summaryrefslogtreecommitdiffstats
path: root/source/scripting/libjs/samr.js
Commit message (Collapse)AuthorAgeFilesLines
* r8822: fixed number of arguments in samr libAndrew Tridgell2005-07-281-2/+2
|
* r8821: continue the trend to move to a more OO style of interface for our jsAndrew Tridgell2005-07-281-16/+15
| | | | | | | | | | | | | | | | 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);
* r8483: switched our generated ejs rpc code over to the new OO interface. ThisAndrew Tridgell2005-07-151-14/+15
| | | | | | 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
* r8298: - started building a library of js routines in scripting/libjs/Andrew Tridgell2005-07-111-0/+170
- switched the existing test programs over to using the library - added install of js lib