diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-02-28 16:49:33 -0800 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-02-28 16:49:33 -0800 |
commit | a5f75d667838e8e7bb037880391f5c44476d33b4 (patch) | |
tree | 5005e888355c1508bc47da697efe119c1615b123 /pod/perlxs.pod | |
parent | 2920c5d2b358b11ace52104b6944bfa0e89256a7 (diff) | |
download | perl-a5f75d667838e8e7bb037880391f5c44476d33b4.tar.gz |
perl 5.002perl-5.002
[editor's note: changes seem to be mostly module updates,
documentation changes and some perl API macro additions]
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r-- | pod/perlxs.pod | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod index 0c376047ba..5e7699b0d5 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -27,12 +27,11 @@ See L<perlxstut> for a tutorial on the whole extension creation process. =head2 On The Road -Many of the examples which follow will concentrate on creating an -interface between Perl and the ONC+ RPC bind library functions. -Specifically, the rpcb_gettime() function will be used to demonstrate many -features of the XS language. This function has two parameters; the first -is an input parameter and the second is an output parameter. The function -also returns a status value. +Many of the examples which follow will concentrate on creating an interface +between Perl and the ONC+ RPC bind library functions. The rpcb_gettime() +function is used to demonstrate many features of the XS language. This +function has two parameters; the first is an input parameter and the second +is an output parameter. The function also returns a status value. bool_t rpcb_gettime(const char *host, time_t *timep); @@ -845,10 +844,10 @@ the function will be called using the THIS->method() syntax. The next examples will use the following C++ class. - class colors { + class color { public: - colors(); - ~colors(); + color(); + ~color(); int blue(); void set_blue( int ); @@ -1115,9 +1114,9 @@ File C<rpctest.pl>: Perl test program for the RPC extension. =head1 XS VERSION -This document covers features supported by C<xsubpp> 1.931. +This document covers features supported by C<xsubpp> 1.933. =head1 AUTHOR Dean Roehrich F<E<lt>roehrich@cray.comE<gt>> -Jan 25, 1996 +Feb 13, 1996 |