diff options
Diffstat (limited to 'doc/ext_ffi_api.html')
-rw-r--r-- | doc/ext_ffi_api.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/doc/ext_ffi_api.html b/doc/ext_ffi_api.html index 687b85c5..0b0e31f6 100644 --- a/doc/ext_ffi_api.html +++ b/doc/ext_ffi_api.html | |||
@@ -1,8 +1,8 @@ | |||
1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | 1 | <!DOCTYPE html> |
2 | <html> | 2 | <html> |
3 | <head> | 3 | <head> |
4 | <title>ffi.* API Functions</title> | 4 | <title>ffi.* API Functions</title> |
5 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | 5 | <meta charset="utf-8"> |
6 | <meta name="Copyright" content="Copyright (C) 2005-2022"> | 6 | <meta name="Copyright" content="Copyright (C) 2005-2022"> |
7 | <meta name="Language" content="en"> | 7 | <meta name="Language" content="en"> |
8 | <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen"> | 8 | <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen"> |
@@ -42,9 +42,13 @@ td.abiparam { font-weight: bold; width: 6em; } | |||
42 | <a href="ext_ffi_semantics.html">FFI Semantics</a> | 42 | <a href="ext_ffi_semantics.html">FFI Semantics</a> |
43 | </li></ul> | 43 | </li></ul> |
44 | </li><li> | 44 | </li><li> |
45 | <a href="ext_buffer.html">String Buffers</a> | ||
46 | </li><li> | ||
45 | <a href="ext_jit.html">jit.* Library</a> | 47 | <a href="ext_jit.html">jit.* Library</a> |
46 | </li><li> | 48 | </li><li> |
47 | <a href="ext_c_api.html">Lua/C API</a> | 49 | <a href="ext_c_api.html">Lua/C API</a> |
50 | </li><li> | ||
51 | <a href="ext_profiler.html">Profiler</a> | ||
48 | </li></ul> | 52 | </li></ul> |
49 | </li><li> | 53 | </li><li> |
50 | <a href="status.html">Status</a> | 54 | <a href="status.html">Status</a> |
@@ -460,6 +464,10 @@ otherwise. The following parameters are currently defined: | |||
460 | <td class="abiparam">eabi</td><td class="abidesc">EABI variant of the standard ABI</td></tr> | 464 | <td class="abiparam">eabi</td><td class="abidesc">EABI variant of the standard ABI</td></tr> |
461 | <tr class="odd"> | 465 | <tr class="odd"> |
462 | <td class="abiparam">win</td><td class="abidesc">Windows variant of the standard ABI</td></tr> | 466 | <td class="abiparam">win</td><td class="abidesc">Windows variant of the standard ABI</td></tr> |
467 | <tr class="even"> | ||
468 | <td class="abiparam">uwp</td><td class="abidesc">Universal Windows Platform</td></tr> | ||
469 | <tr class="odd"> | ||
470 | <td class="abiparam">gc64</td><td class="abidesc">64 bit GC references</td></tr> | ||
463 | </table> | 471 | </table> |
464 | 472 | ||
465 | <h3 id="ffi_os"><tt>ffi.os</tt></h3> | 473 | <h3 id="ffi_os"><tt>ffi.os</tt></h3> |
@@ -536,8 +544,8 @@ corresponding ctype. | |||
536 | The parser for Lua source code treats numeric literals with the | 544 | The parser for Lua source code treats numeric literals with the |
537 | suffixes <tt>LL</tt> or <tt>ULL</tt> as signed or unsigned 64 bit | 545 | suffixes <tt>LL</tt> or <tt>ULL</tt> as signed or unsigned 64 bit |
538 | integers. Case doesn't matter, but uppercase is recommended for | 546 | integers. Case doesn't matter, but uppercase is recommended for |
539 | readability. It handles both decimal (<tt>42LL</tt>) and hexadecimal | 547 | readability. It handles decimal (<tt>42LL</tt>), hexadecimal |
540 | (<tt>0x2aLL</tt>) literals. | 548 | (<tt>0x2aLL</tt>) and binary (<tt>0b101010LL</tt>) literals. |
541 | </p> | 549 | </p> |
542 | <p> | 550 | <p> |
543 | The imaginary part of complex numbers can be specified by suffixing | 551 | The imaginary part of complex numbers can be specified by suffixing |