diff options
author | Sven Gothel <[email protected]> | 2023-07-05 11:32:56 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-07-05 11:32:56 +0200 |
commit | 56d3cbcf7a6a6f83706962dd24846906fa2bb420 (patch) | |
tree | 8af0184da92a5daca091dfbd380244cd79377a67 /doc | |
parent | 5ceca8550b82591a6a2661a26d3e0d5e6e3e15ff (diff) |
Manual: Refine `ArgumentIsPascalString`
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/manual/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/index.html b/doc/manual/index.html index b960b56..021720c 100755 --- a/doc/manual/index.html +++ b/doc/manual/index.html @@ -961,11 +961,11 @@ <dt><strong><a name="ArgumentIsString">ArgumentIsPascalString</a></strong></dt> <dd> Syntax: <code>ArgumentIsString [function name] - [indice-tuples...]</code>, with each tuple being index for the <code>int length</code> - and the <code>const char* value</code> argument with index 0 for the the first argument<br/> + [indice-tuples...]</code>, with each tuple being the argument-index for the '<code>int length</code>' + and the '<code>char* value</code>' argument with index 0 for the the first argument<br/> (optional) For a C function with one or more outgoing - <code>int length</code> and <code>char* value</code> (or compatible data type) arguments, + '<code>int length</code>' and '<code>char* value</code>' (or compatible data type) arguments, indicates that those arguments are semantically non-null-terminated Pascal strings rather than null-terminated C strings or arbitrary arrays of bytes. The generated glue code will be modified to emit those arguments as java.lang.String objects rather than |