scsh-yp/scheme/yp-interfaces.scm

29 lines
490 B
Scheme
Raw Normal View History

2003-10-30 10:43:43 -05:00
(define-interface yp-interface
(export
2003-10-30 15:04:17 -05:00
yp-error?
yp-communication-error?
yp-unknown-resource-error?
yp-internal-error?
2003-10-30 10:43:43 -05:00
2003-10-30 15:04:17 -05:00
yp-bad-arguments?
yp-bad-database?
yp-binding-error?
yp-unknown-key?
yp-unknown-map?
yp-no-domain?
yp-portmap-failure?
yp-allocation-failure?
yp-rpc-failure?
yp-bind-failure?
yp-server-error?
2003-10-30 10:43:43 -05:00
yp-get-default-domain
yp-bind
yp-unbind
2003-10-30 15:04:17 -05:00
yp-match
2003-10-30 10:43:43 -05:00
yp-order
yp-master
yp-first
yp-next
2003-10-30 15:04:17 -05:00
yp-map->list))