|
The PREFIX keyword designates prefixes which should be removed from the Perl function
names. If the C function is rpcb_gettime() and the PREFIX value is rpcb_
then Perl will see this function as gettime().
This keyword should follow the PACKAGE keyword when used. If PACKAGE is not used then
PREFIX should follow the MODULE keyword.
MODULE = RPC PREFIX = rpc_
MODULE = RPC PACKAGE = RPCB PREFIX = rpcb_
|
|
|
|