diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-07 13:38:07 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-07 13:38:07 +0000 |
commit | 55d2c54e030c71e71a8b38d17b0e20a1b79517e7 (patch) | |
tree | 06f693e4014278e88bb55cd9cf075214cedfe773 /source4/librpc | |
parent | e10859fd0a45b2415699334be2f0be8b1fd994b2 (diff) | |
download | samba-55d2c54e030c71e71a8b38d17b0e20a1b79517e7.tar.gz samba-55d2c54e030c71e71a8b38d17b0e20a1b79517e7.tar.bz2 samba-55d2c54e030c71e71a8b38d17b0e20a1b79517e7.zip |
re-wrote pidl to use Parse::Yapp instead of Parse::RecDescent, This
makes pidl about 3x faster, and also gives us much better error
reporting and a more standard grammer definition that will be much
easier to code in lex/yacc if we want to do so at a later
date. (Parse::Yapp uses essentially the same grammer file as lex/yacc)
It also means we no longer need Parse::RecDescent, which should make
pidl much more portable.
(This used to be commit 4bbaffeb44dca99ad8c0245beb1fddbe01557215)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/lsa.idl | 6 | ||||
-rw-r--r-- | source4/librpc/idl/w32time.idl | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index d4829097bd..5e9c1a049b 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -6,7 +6,7 @@ [ uuid(12345778-1234-abcd-ef00-0123456789ab), version(0.0), - endpoints(lsarpc lsass), + endpoints(lsarpc,lsass), pointer_default(unique) ] interface lsarpc { @@ -449,7 +449,7 @@ [ - uuid(3919286a-b10c-11d0-9ba8-00c04fd92ef5) + uuid(3919286a-b10c-11d0-9ba8-00c04fd92ef5), version(0.0), endpoints(lsarpc,lsass), pointer_default(unique) @@ -459,6 +459,6 @@ interface lsads /*****************/ /* Function 0x00 */ - lsads_Unknown0(); + void lsads_Unknown0(); } diff --git a/source4/librpc/idl/w32time.idl b/source4/librpc/idl/w32time.idl index bb14bddbfd..ef411b126a 100644 --- a/source4/librpc/idl/w32time.idl +++ b/source4/librpc/idl/w32time.idl @@ -4,7 +4,7 @@ [ uuid(8fb6d884-2388-11d0-8c35-00c04fda2795), - endpoints(srvsvc atsvc browser keysvc wkssvc), + endpoints(srvsvc,atsvc,browser,keysvc,wkssvc), version(4.1) ] interface w32time |