aboutsummaryrefslogtreecommitdiff
path: root/c/pl.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/pl.h')
-rw-r--r--c/pl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/pl.h b/c/pl.h
index d1c01c4..4a44f72 100644
--- a/c/pl.h
+++ b/c/pl.h
@@ -7,8 +7,6 @@
#include "common.h"
-int PL_get_tchars(term_t t, TCHAR** pTsz, int iFlags);
-
struct Frame
{
Frame();
@@ -39,6 +37,8 @@ private:
qid_t m_q;
};
+template <typename T> int PlString(term_t t, std::basic_string<T>* pBstr, int iFlags = CVT_WRITE);
+
/* Polymorphic aliases for PL_put_*, PL_get_*. */
inline int PlPut(term_t t, int x) { return PL_put_integer(t, x); }
inline int PlPut(term_t t, long x) { return PL_put_integer(t, x); }