X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/73c0fd67eeb7fe0d6cc573afba798a88c4e86d82..529bb4e23b94186596ca0e3f5d295b0be95d4fad:/csrc/pforth.h diff --git a/csrc/pforth.h b/csrc/pforth.h index cd74336..96eb93f 100644 --- a/csrc/pforth.h +++ b/csrc/pforth.h @@ -39,7 +39,7 @@ extern "C" { #endif /* Main entry point to pForth. */ -cell_t pfDoForth( const char *DicName, const char *SourceName, cell_t IfInit ); +ThrowCode pfDoForth( const char *DicName, const char *SourceName, cell_t IfInit ); /* Turn off messages. */ void pfSetQuiet( cell_t IfQuiet ); @@ -78,7 +78,7 @@ void pfDeleteDictionary( PForthDictionary dict ); ThrowCode pfQuit( void ); /* Execute a single execution token in the current task and return 0 or an error code. */ -int pfCatch( ExecToken XT ); +ThrowCode pfCatch( ExecToken XT ); /* Include the given pForth source code file. */ ThrowCode pfIncludeFile( const char *FileName );