diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2014-06-30 19:11:30 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2014-06-30 19:11:30 +0200 |
commit | ca8f02c7d6ecd5c0b5a9704e0aaf268cacab4242 (patch) | |
tree | e01e695ad5932173be0797e8998bbd273404ba4b /doc/manual.txt | |
parent | dc15d37db03a7a5d323b538cf0ef961ef558d940 (diff) | |
parent | 14ba5263d3b6613156ce7b45b83b3d33dfc6840e (diff) | |
download | Nim-ca8f02c7d6ecd5c0b5a9704e0aaf268cacab4242.tar.gz |
Merge pull request #1299 from gradha/pr_documents_interfacing
Documents backend interfacing
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 e96e50999..8a7cfba54 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 |