Listing 6: Detecting improper calls to platform-specific code

void CompactMemory( void )
{
#if HANDLE_BASED
  DoCompaction( );
#else
  assert( "CompactMemory should not be called !" == NULL );
#endif
}
//End of File