EgtInterface :

- aggiunta interfaccia per EgtDuploGetModified.
This commit is contained in:
Dario Sassi
2021-02-08 18:25:10 +00:00
parent b2b221e95f
commit be096f8b21
+14
View File
@@ -225,6 +225,20 @@ __stdcall EgtDuploSetModified( int nSouId)
return ( ExeDuploSetModified( nSouId) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtDuploGetModified( int nSouId, BOOL* pbModif)
{
if ( pbModif == nullptr)
return FALSE ;
bool bModif ;
if ( ExeDuploGetModified( nSouId, bModif)) {
*pbModif = ( bModif ? TRUE : FALSE) ;
return TRUE ;
}
return FALSE ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtDuploUpdate( int nSouId)