|
|
RPC/XDR typedefs have the same syntax as C typedefs.
typedef-definition: typedef declarationThis 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;