IltmmMemory::get_GrowBy Example for C++

void TestSetPreferredFilter(IltmmMemory *pMemory) 
{ 
   long lOldGrowBy, lNewGrowBy; 
   // get the grow by amount 
   pMemory->get_GrowBy(&lOldGrowBy); 
   // increase it 
   pMemory->put_GrowBy(lOldGrowBy + 100); 
   // get the grow by amount again 
   pMemory->get_GrowBy(&lNewGrowBy); 
   // display it here 
   CString strGrowBy; 
   strGrowBy.Format(TEXT("The old amount memory object size = %d\nThe new amount memory object size = %d"), lOldGrowBy, lNewGrowBy); 
   MessageBox(NULL, strGrowBy, TEXT("Memory Object Grow Setting"), MB_OK); 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Multimedia C API Help