Mentions {.exportc.} limits. Refs #826.

This commit is contained in:
Grzegorz Adam Hankiewicz
2014-02-02 17:59:17 +01:00
parent ea42682dbc
commit 92e3f667bd

View File

@@ -5172,9 +5172,9 @@ the same feature under the same name.
Exportc pragma
--------------
The `exportc`:idx: pragma provides a means to export a type, a variable, or a
procedure to C. The optional argument is a string containing the C identifier.
If the argument is missing, the C name is the Nimrod
identifier *exactly as spelled*:
procedure to C. Enums and constants can't be exported. The optional argument
is a string containing the C identifier. If the argument is missing, the C
name is the Nimrod identifier *exactly as spelled*:
.. code-block:: Nimrod
proc callme(formatstr: cstring) {.exportc: "callMe", varargs.}