diff options
author | Miles Bader <miles@gnu.org> | 1995-07-14 20:51:43 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-07-14 20:51:43 +0000 |
commit | 6e6d09aa6c7f9ee601022b4245004d2db72b8234 (patch) | |
tree | f0a6920d76dd45344782c9962371c0da81a42f5a | |
parent | 0f0cc39414e41c55cce540ffd93f4da26ea1833d (diff) |
Formerly mig-mutate.h.~2~
-rw-r--r-- | pflocal/mig-mutate.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/pflocal/mig-mutate.h b/pflocal/mig-mutate.h index 6ddec3fa..4f4c747a 100644 --- a/pflocal/mig-mutate.h +++ b/pflocal/mig-mutate.h @@ -1,6 +1,6 @@ /* Automagic type transformation for our mig interfaces - Copyright (C) 1994 Free Software Foundation + Copyright (C) 1995 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -18,13 +18,14 @@ /* Only CPP macro definitions should go in this file. */ -#define FILE_INTRAN treefs_handle_t treefs_begin_using_handle_port (file_t) -#define FILE_DESTRUCTOR treefs_end_using_handle_port (treefs_handle_t) +#define IO_INTRAN sock_user_t begin_using_sock_user_port (io_t) +#define IO_DESTRUCTOR end_using_sock_user_port (sock_user_t) +#define IO_IMPORTS import "mig-decls.h"; -#define IO_INTRAN treefs_handle_t treefs_begin_using_handle_port (io_t) -#define IO_DESTRUCTOR treefs_end_using_handle_port (treefs_handle_t) +#define SOCKET_INTRAN sock_user_t begin_using_sock_user_port (socket_t) +#define SOCKET_DESTRUCTOR end_using_sock_user_port (sock_user_t) +#define SOCKET_IMPORTS import "mig-decls.h"; -#define FILE_IMPORTS import "mig-decls.h"; -#define IO_IMPORTS import "mig-decls.h"; -#define FSYS_IMPORTS import "mig-decls.h"; -#define IFSOCK_IMPORTS import "mig-decls.h"; +#define ADDR_INTRAN addr_t begin_using_addr_port (addr_t) +#define ADDR_DESTRUCTOR end_using_addr_port (addr_t) +#define ADDR_IMPORTS import "mig-decls.h"; |