/* ** Copyright (c) 1991, by ** Process Software Corporation ** Framingham, Massachusetts */ /* ** RPCGEN input file for the print file RPC batching example. ** ** This file is used by RPCGEN to create the files PRINT.H and PRINT_XDR.C ** The client and server files were developed from scratch. */ const MAX_STRING_LEN = 1024; /* maximum string length */ /* ** This is the information that the client sends to the server */ struct a_record { string ar_buffer< MAX_STRING_LEN>; }; program PRINT_FILE_PROG { version PRINT_FILE_VERS_1 { void PRINT_RECORD( a_record) = 1; u_long SHOW_COUNT( void) = 2; } = 1; } = 0x20000003; /* end file PRINT.X */