diff options
author | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2014-06-21 19:35:40 +0200 |
---|---|---|
committer | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2014-06-21 22:22:52 +0200 |
commit | 9ed984201db1c16d91c3137b622008afb19dfc5a (patch) | |
tree | 80e866fe7f4d82216de0fdd3b7e032569d6bcaf0 /doc/manual.txt | |
parent | d927eb5854e9c6c005344bc81d4632ffc8f5d975 (diff) | |
download | Nim-9ed984201db1c16d91c3137b622008afb19dfc5a.tar.gz |
Hyperlinks together importc like pragmas.
Diffstat (limited to 'doc/manual.txt')
-rw-r--r-- | doc/manual.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 3af41faec..2f0387b19 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -5488,7 +5488,10 @@ spelled*: proc printf(formatstr: cstring) {.header: "<stdio.h>", importc: "printf", varargs.} Note that this pragma is somewhat of a misnomer: Other backends will provide -the same feature under the same name. +the same feature under the same name. Also, if you are interfacing with C++ +you can use the `ImportCpp pragma <nimrodc.html#importcpp-pragma>`_ and +interfacing with Objective-C the `ImportObjC pragma +<nimrodc.html#importobjc-pragma>`_. Exportc pragma |