diff options
Diffstat (limited to 'c/pl.h')
-rw-r--r-- | c/pl.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,16 +4,16 @@ #include <windows.h> #include <SWI-Prolog.h> -int PL_get_tchars(term_t, TCHAR**, int); -int Plx(const char*, const char*); +int PL_get_tchars(term_t t, TCHAR** lpTsz, int iFlags); +int Plx(const char* szMod, const char* szPred); struct Query { Query(module_t ctx, predicate_t p, term_t t0); ~Query(void); - int Cut(); - int Close(); - int NextSolution(); + int Cut(void); + int Close(void); + int NextSolution(void); private: qid_t m_q; }; |