Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
94f9310
perlxs.pod: remove section on %v
iabyn Jun 3, 2025
a6b063a
perlxs.pod: reindent and reformat code examples
iabyn Jun 3, 2025
d83ee3a
perlxs.pod: delete most non-ref sections
iabyn Jun 4, 2025
8112b82
perlxs.pod: fix up links after deleting sections
iabyn Jun 4, 2025
a87aad8
perlxs.pod: reorder sections
iabyn Jun 7, 2025
4958b08
perlxs.pod: add group headers
iabyn Jun 7, 2025
a7d0da8
perlxs.pod: add a new introductory part
iabyn Jun 30, 2025
9f81438
perlxs.pod: add BNF definition section
iabyn Jul 7, 2025
07211e3
perlxs.pod: update MODULE/PACKAGE/PREFIX
iabyn Jul 7, 2025
979656f
perlxs.pod: update file-scoped directive text
iabyn Jul 14, 2025
9559e2e
perlxs.pod: update REQUIRE, VERSIONCHECK keywords
iabyn Jul 11, 2025
ea0e873
perlxs.pod: update PROTOTYPES: keyword
iabyn Jul 11, 2025
aa277c4
perlxs.pod: update EXPORT_XSUB_SYMBOLS, INCLUDE(_COMMAND)
iabyn Jul 11, 2025
461a037
perlxs.pod: update TYPEMAP: keyword
iabyn Jul 11, 2025
1726e42
perlxs.pod: update BOOT: keyword
iabyn Jul 11, 2025
4a37069
perlxs.pod: update FALLBACK: keyword
iabyn Jul 11, 2025
19450c1
perlxs.pod: update XSUB Structure + Declaration
iabyn Jul 12, 2025
86bca28
perlxs.pod: update section 'An XSUB Parameter'
iabyn Jul 18, 2025
6acff19
perlxs.pod: update IN_OUT etc section
iabyn Jul 21, 2025
05c2b71
perlxs.pod: update default, length, ellipis params
iabyn Jul 27, 2025
5c40496
perlxs.pod: update: Input part, PREINIT sections
iabyn Jul 30, 2025
7b99b8c
perlxs.pod: update 'The INPUT: Keyword' section
iabyn Aug 1, 2025
dd12648
perlxs.pod: update 'SCOPE: Keyword' section
iabyn Aug 1, 2025
43c6818
perlxs.pod: update: init part, INIT sections
iabyn Aug 4, 2025
1f84171
perlxs.pod: update: code part, autocall, C_ARGS
iabyn Aug 6, 2025
99b8d1a
perlxs.pod: update: CODE, PPCODE
iabyn Aug 9, 2025
0b98f81
perlxs.pod: update NOT_IMPLEMENTED_YET: keyword
iabyn Aug 12, 2025
df5bdaf
perlxs.pod: update: output part
iabyn Aug 13, 2025
0aa3aae
perlxs.pod: update: cleanup part
iabyn Aug 13, 2025
59c4ee8
perlxs.pod: update generic intro, PROTOTYPE
iabyn Aug 13, 2025
36e3cec
perlxs.pod: mention package name types
iabyn Aug 16, 2025
2f2e51b
perlxs.pod: update OVERLOAD, add T_PTROBJ
iabyn Aug 16, 2025
ca6528f
perlxs.pod: document ATTRS
iabyn Aug 19, 2025
d1710da
perlxs.pod: add "Sharing XSUB bodies" section
iabyn Aug 19, 2025
d370632
perlxs.pod: update: ALIAS
iabyn Aug 19, 2025
e89b380
perlxs.pod: update INTERFACE, INTERFACE_MACRO
iabyn Aug 26, 2025
60c5011
perlxs.pod: update: CASE
iabyn Aug 29, 2025
b4ef54e
perlxs.pod: add "Using Typemaps" section
iabyn Aug 30, 2025
3f97257
perlxs.pod: update "Using XS With C++" section
iabyn Sep 28, 2025
1128ed4
perlxs.pod: update MY_CXT section
iabyn Sep 29, 2025
9c9a244
perlxs.pod: update EXAMPLES section
iabyn Sep 29, 2025
ae80012
perlxs.pod: update CAVEATS, AUTHOR, A DIAGNOSTICS
iabyn Sep 30, 2025
8dc934f
perlxs.pod: standardise version numbers in the doc
iabyn Nov 3, 2025
412f16e
perlxs: tweaks following code review
iabyn Oct 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions XSUB.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ C<L</THIS>>.
=for apidoc Amnu|type|RETVAL
Variable which is setup by C<xsubpp> to hold the return value for an
XSUB. This is always the proper type for the XSUB. See
L<perlxs/"The RETVAL Variable">.
L<perlxs>.

=for apidoc Amnu|type|THIS
Variable which is setup by C<xsubpp> to designate the object in a C++
Expand All @@ -44,7 +44,7 @@ must be called prior to setup the C<MARK> variable.

=for apidoc Amn|Stack_off_t|items
Variable which is setup by C<xsubpp> to indicate the number of
items on the stack. See L<perlxs/"Variable-length Parameter Lists">.
items on the stack. See L<perlxs/"Ellipsis: variable-length parameter lists">.

=for apidoc Amn|I32|ix
Variable which is setup by C<xsubpp> to indicate which of an
Expand Down
Loading
Loading