From a52a9c5edb05959285fcd1738e88e842d8532f3b Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Mon, 13 Oct 2025 08:50:00 +0200 Subject: [PATCH] EgtInterface : - adattamenti per modifica nomi puntatori a funzione. --- API_General.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/API_General.cpp b/API_General.cpp index 59c8aa8..13a1999 100644 --- a/API_General.cpp +++ b/API_General.cpp @@ -41,7 +41,7 @@ __stdcall EgtExit( void) //----------------------------------------------------------------------------- BOOL -__stdcall EgtSetOnTerminateProcess( pfOnTerminateProcess pFun) +__stdcall EgtSetOnTerminateProcess( psfOnTerminateProcess pFun) { return ( ExeSetOnTerminateProcess( pFun) ? TRUE : FALSE) ; } @@ -307,14 +307,14 @@ __stdcall EgtOutLog( const wchar_t* wsMsg) //----------------------------------------------------------------------------- BOOL -__stdcall EgtSetProcessEvents( pfProcEvents pFun) +__stdcall EgtSetProcessEvents( psfProcEvents pFun) { return ( ExeSetProcessEvents( pFun) ? TRUE : FALSE) ; } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- -static pfOutTextW s_pFunOutText = nullptr ; +static psfOutTextW s_pFunOutText = nullptr ; //----------------------------------------------------------------------------- bool @@ -332,7 +332,7 @@ __stdcall MyOutText( const string& sText) //----------------------------------------------------------------------------- BOOL -__stdcall EgtSetOutText( pfOutTextW pFun) +__stdcall EgtSetOutText( psfOutTextW pFun) { s_pFunOutText = pFun ; return ( ExeSetOutText( (( pFun != nullptr) ? MyOutText : nullptr)) ? TRUE : FALSE) ;