diff --git a/EXeExecutor.h b/EXeExecutor.h index 5fb4ebc..22c97a9 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -66,6 +66,7 @@ EXE_EXPORT bool ExeGetMemoryInfo( std::string& sMem) ; EXE_EXPORT bool ExeOutLog( const std::string& sMsg, int nDebugLevel = 0) ; EXE_EXPORT bool ExeSetEnableUI( bool bEnableUI) ; EXE_EXPORT bool ExeGetEnableUI( void) ; +EXE_EXPORT int ExeMessageBox( const std::string& sText, const std::string& sTitle, int nType) ; EXE_EXPORT bool ExeSetProcessEvents( pfProcEvents pFun) ; EXE_EXPORT int ExeProcessEvents( int nProg, int nPause) ; EXE_EXPORT bool ExeSetOutText( pfOutText pFun) ; diff --git a/EgtStringBase.h b/EgtStringBase.h index 7ca6799..462e16d 100644 --- a/EgtStringBase.h +++ b/EgtStringBase.h @@ -28,3 +28,9 @@ typedef std::list STRLIST ; typedef std::pair INTSTR ; // coppia intero, stringa typedef std::vector INTSTRVECTOR ; // vettore di coppie intero, stringa typedef std::list INTSTRLIST ; // lista di coppie intero, stringa + +//---------------------------------------------------------------------------- +// Raccolte di coppie double, string +typedef std::pair DBLSTR ; // coppia double, stringa +typedef std::vector DBLSTRVECTOR ; // vettore di coppie double, stringa +typedef std::list DBLSTRLIST ; // lista di coppie double, stringa