Made this header self-sufficent. It had unnecessary dependencies on
<sys/cdefs.h>, <sys/types.h>, <rpcsvc/yp_prot.h>, and on the latter's prerequisites (5 more).
This commit is contained in:
parent
71ff0f9823
commit
fc0a8856c1
@ -26,12 +26,14 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: ypclnt.h,v 1.4 1996/12/30 14:01:12 peter Exp $
|
* $Id: ypclnt.h,v 1.9 1997/05/28 04:38:25 wpaul Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _RPCSVC_YPCLNT_H_
|
#ifndef _RPCSVC_YPCLNT_H_
|
||||||
#define _RPCSVC_YPCLNT_H_
|
#define _RPCSVC_YPCLNT_H_
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
#define YPERR_BADARGS 1 /* args to function are bad */
|
#define YPERR_BADARGS 1 /* args to function are bad */
|
||||||
#define YPERR_RPC 2 /* RPC failure */
|
#define YPERR_RPC 2 /* RPC failure */
|
||||||
#define YPERR_DOMAIN 3 /* can't bind to a server for domain */
|
#define YPERR_DOMAIN 3 /* can't bind to a server for domain */
|
||||||
@ -59,10 +61,12 @@
|
|||||||
|
|
||||||
struct ypall_callback {
|
struct ypall_callback {
|
||||||
/* return non-0 to stop getting called */
|
/* return non-0 to stop getting called */
|
||||||
int (*foreach) __P((u_long, char *, int, char *, int, void *));
|
int (*foreach) __P((unsigned long, char *, int, char *, int, void *));
|
||||||
char *data; /* opaque pointer for use of callback fn */
|
char *data; /* opaque pointer for use of callback fn */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct dom_binding;
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
int yp_bind __P((char *dom));
|
int yp_bind __P((char *dom));
|
||||||
int _yp_dobind __P((char *dom, struct dom_binding **ypdb));
|
int _yp_dobind __P((char *dom, struct dom_binding **ypdb));
|
||||||
|
Loading…
Reference in New Issue
Block a user