diff options
Diffstat (limited to 'doc/ext_ffi_api.html')
-rw-r--r-- | doc/ext_ffi_api.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/ext_ffi_api.html b/doc/ext_ffi_api.html index 40fc694b..ad19b76b 100644 --- a/doc/ext_ffi_api.html +++ b/doc/ext_ffi_api.html | |||
@@ -45,6 +45,8 @@ td.abiparam { font-weight: bold; width: 6em; } | |||
45 | <a href="ext_jit.html">jit.* Library</a> | 45 | <a href="ext_jit.html">jit.* Library</a> |
46 | </li><li> | 46 | </li><li> |
47 | <a href="ext_c_api.html">Lua/C API</a> | 47 | <a href="ext_c_api.html">Lua/C API</a> |
48 | </li><li> | ||
49 | <a href="ext_profiler.html">Profiler</a> | ||
48 | </li></ul> | 50 | </li></ul> |
49 | </li><li> | 51 | </li><li> |
50 | <a href="status.html">Status</a> | 52 | <a href="status.html">Status</a> |
@@ -465,6 +467,10 @@ otherwise. The following parameters are currently defined: | |||
465 | <td class="abiparam">eabi</td><td class="abidesc">EABI variant of the standard ABI</td></tr> | 467 | <td class="abiparam">eabi</td><td class="abidesc">EABI variant of the standard ABI</td></tr> |
466 | <tr class="odd"> | 468 | <tr class="odd"> |
467 | <td class="abiparam">win</td><td class="abidesc">Windows variant of the standard ABI</td></tr> | 469 | <td class="abiparam">win</td><td class="abidesc">Windows variant of the standard ABI</td></tr> |
470 | <tr class="even"> | ||
471 | <td class="abiparam">uwp</td><td class="abidesc">Universal Windows Platform</td></tr> | ||
472 | <tr class="odd"> | ||
473 | <td class="abiparam">gc64</td><td class="abidesc">64 bit GC references</td></tr> | ||
468 | </table> | 474 | </table> |
469 | 475 | ||
470 | <h3 id="ffi_os"><tt>ffi.os</tt></h3> | 476 | <h3 id="ffi_os"><tt>ffi.os</tt></h3> |
@@ -541,8 +547,8 @@ corresponding ctype. | |||
541 | The parser for Lua source code treats numeric literals with the | 547 | The parser for Lua source code treats numeric literals with the |
542 | suffixes <tt>LL</tt> or <tt>ULL</tt> as signed or unsigned 64 bit | 548 | suffixes <tt>LL</tt> or <tt>ULL</tt> as signed or unsigned 64 bit |
543 | integers. Case doesn't matter, but uppercase is recommended for | 549 | integers. Case doesn't matter, but uppercase is recommended for |
544 | readability. It handles both decimal (<tt>42LL</tt>) and hexadecimal | 550 | readability. It handles decimal (<tt>42LL</tt>), hexadecimal |
545 | (<tt>0x2aLL</tt>) literals. | 551 | (<tt>0x2aLL</tt>) and binary (<tt>0b101010LL</tt>) literals. |
546 | </p> | 552 | </p> |
547 | <p> | 553 | <p> |
548 | The imaginary part of complex numbers can be specified by suffixing | 554 | The imaginary part of complex numbers can be specified by suffixing |