]> git.saurik.com Git - apple/libinfo.git/blobdiff - rpc.subproj/pmap_rmt.h
Libinfo-459.40.1.tar.gz
[apple/libinfo.git] / rpc.subproj / pmap_rmt.h
index 1eb1c79de8492f49981dc82cf3a828956b0126cb..9ffbd1cb458c7dfc8a738128722c9693d6876844 100644 (file)
@@ -3,22 +3,21 @@
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
- * 
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apple Public Source License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
+ * Portions Copyright (c) 1999 Apple Computer, Inc.  All Rights
+ * Reserved.  This file contains Original Code and/or Modifications of
+ * Original Code as defined in and that are subject to the Apple Public
+ * Source License Version 1.1 (the "License").  You may not use this file
+ * except in compliance with the License.  Please obtain a copy of the
+ * License at http://www.apple.com/publicsource and read it before using
+ * this file.
  * 
  * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
+ * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT.  Please see the
+ * License for the specific language governing rights and limitations
+ * under the License.
  * 
  * @APPLE_LICENSE_HEADER_END@
  */
@@ -52,7 +51,7 @@
  *
  *     from: @(#)pmap_rmt.h 1.2 88/02/08 SMI 
  *     from: @(#)pmap_rmt.h    2.1 88/07/29 4.0 RPCSRC
- *     $Id: pmap_rmt.h,v 1.2 1999/10/14 21:56:53 wsanchez Exp $
+ *     $Id: pmap_rmt.h,v 1.3 2004/10/28 21:58:23 emoy Exp $
  */
 
 /*
 #include <sys/cdefs.h>
 
 struct rmtcallargs {
-       u_long prog, vers, proc, arglen;
+#ifdef __LP64__
+       unsigned int prog, vers, proc, arglen;
+#else
+       unsigned long prog, vers, proc, arglen;
+#endif
        caddr_t args_ptr;
        xdrproc_t xdr_args;
 };
 
 struct rmtcallres {
-       u_long *port_ptr;
-       u_long resultslen;
+#ifdef __LP64__
+       unsigned int *port_ptr;
+       unsigned int resultslen;
+#else
+       unsigned long *port_ptr;
+       unsigned long resultslen;
+#endif
        caddr_t results_ptr;
        xdrproc_t xdr_results;
 };