diff options
Diffstat (limited to 'c/pl.h')
-rw-r--r-- | c/pl.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -6,6 +6,7 @@ int PL_get_tchars(term_t, TCHAR **, int); int Plx(const char *, const char *); + struct Query { Query(module_t ctx, predicate_t p, term_t t0); @@ -17,9 +18,6 @@ private: qid_t m_q; }; -#define DLVSIKEY 0 -#define DLVSIVALUE 1 - /* 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); } |