X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlxs.pod;h=c9f7cc8549eb60336c9f819b8c875e520dd2033e;hb=7d824d8e6f7cacfafe95d58fa9ab3d99bd41e854;hp=03986419628fd5fdd82b040e9c8cddaafe19556b;hpb=fe854a6f990f7776a8ee8bd28f02e1bd36e5bb58;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlxs.pod b/pod/perlxs.pod index 0398641..c9f7cc8 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -1722,20 +1722,20 @@ Below is an example module that makes use of the macros. #include "EXTERN.h" #include "perl.h" #include "XSUB.h" - + /* Global Data */ - + #define MY_CXT_KEY "BlindMice::_guts" XS_VERSION - + typedef struct { int count; char name[3][100]; } my_cxt_t; - + START_MY_CXT - + MODULE = BlindMice PACKAGE = BlindMice - + BOOT: { MY_CXT_INIT;