EgtInterface :
- aggiunta interfaccia per EgtDuploGetModified.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user