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 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.