Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
fa8e6aa
perlxs.pod: remove section on %v
iabyn Jun 3, 2025
8f8f7f0
perlxs.pod: reindent and reformat code examples
iabyn Jun 3, 2025
9710af7
perlxs.pod: delete most non-ref sections
iabyn Jun 4, 2025
305e19c
perlxs.pod: fix up links after deleting sections
iabyn Jun 4, 2025
853f692
perlxs.pod: reorder sections
iabyn Jun 7, 2025
21ecdb8
perlxs.pod: add group headers
iabyn Jun 7, 2025
3769e97
perlxs.pod: add a new introductory part
iabyn Jun 30, 2025
ca7bdbd
perlxs.pod: add BNF definition section
iabyn Jul 7, 2025
f596116
perlxs.pod: update MODULE/PACKAGE/PREFIX
iabyn Jul 7, 2025
e338dfc
perlxs.pod: update file-scoped directive text
iabyn Jul 14, 2025
df51936
perlxs.pod: update REQUIRE, VERSIONCHECK keywords
iabyn Jul 11, 2025
0312e37
perlxs.pod: update PROTOTYPES: keyword
iabyn Jul 11, 2025
ac07e97
perlxs.pod: update EXPORT_XSUB_SYMBOLS, INCLUDE(_COMMAND)
iabyn Jul 11, 2025
09e774d
perlxs.pod: update TYPEMAP: keyword
iabyn Jul 11, 2025
560391d
perlxs.pod: update BOOT: keyword
iabyn Jul 11, 2025
9af5c74
perlxs.pod: update FALLBACK: keyword
iabyn Jul 11, 2025
e5346fd
perlxs.pod: update XSUB Structure + Declaration
iabyn Jul 12, 2025
955ad90
perlxs.pod: update section 'An XSUB Parameter'
iabyn Jul 18, 2025
9717f25
perlxs.pod: update IN_OUT etc section
iabyn Jul 21, 2025
d8dcfe7
perlxs.pod: update default, length, ellipis params
iabyn Jul 27, 2025
34f73e1
perlxs.pod: update: Input part, PREINIT sections
iabyn Jul 30, 2025
89660c7
perlxs.pod: update 'The INPUT: Keyword' section
iabyn Aug 1, 2025
fd4933d
perlxs.pod: update 'SCOPE: Keyword' section
iabyn Aug 1, 2025
7fd59c0
perlxs.pod: update: init part, INIT sections
iabyn Aug 4, 2025
8e0e4de
perlxs.pod: update: code part, autocall, C_ARGS
iabyn Aug 6, 2025
4e8a05c
perlxs.pod: update: CODE, PPCODE
iabyn Aug 9, 2025
5ab6a04
perlxs.pod: update NOT_IMPLEMENTED_YET: keyword
iabyn Aug 12, 2025
6264856
perlxs.pod: update: output part
iabyn Aug 13, 2025
08a1224
perlxs.pod: update: cleanup part
iabyn Aug 13, 2025
cc81622
perlxs.pod: update generic intro, PROTOTYPE
iabyn Aug 13, 2025
b26efeb
perlxs.pod: mention package name types
iabyn Aug 16, 2025
d11731b
perlxs.pod: update OVERLOAD, add T_PTROBJ
iabyn Aug 16, 2025
4d48858
perlxs.pod: document ATTRS
iabyn Aug 19, 2025
f66fd49
perlxs.pod: add "Sharing XSUB bodies" section
iabyn Aug 19, 2025
815fe4e
perlxs.pod: update: ALIAS
iabyn Aug 19, 2025
7188b4a
perlxs.pod: update INTERFACE, INTERFACE_MACRO
iabyn Aug 26, 2025
17cf168
perlxs.pod: update: CASE
iabyn Aug 29, 2025
35fc3f0
perlxs.pod: add "Using Typemaps" section
iabyn Aug 30, 2025
95a623b
perlxs.pod: update "Using XS With C++" section
iabyn Sep 28, 2025
ae9183e
perlxs.pod: update MY_CXT section
iabyn Sep 29, 2025
f3f436a
perlxs.pod: update EXAMPLES section
iabyn Sep 29, 2025
9afbfda
perlxs.pod: update CAVEATS, AUTHOR, A DIAGNOSTICS
iabyn Sep 30, 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