DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Programming with Remote Procedure Calls (RPC)

Typedefs

RPC/XDR typedefs have the same syntax as C typedefs.

   typedef-definition:
   	typedef declaration
This example defines an fname_type used for declaring file name strings that have a maximum length of 255 characters.
   typedef string fname_type<255>;
This is converted to:
   typedef char *fname_type;

© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 27 April 2004