SetProcessDataProc: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
 
Line 5: Line 5:
== Description ==
== Description ==


''pProcessDataProc'' contains a pointer to a function that you may want to call when notifying user about the progress being made when you pack or extract files from an archive. You need to store the value at some place if you want to use it; you can use ''hArcData'' that you have returned by [[OpenArchive]] to identify that place.
* ''pProcessDataProc'' contains a pointer to a function that you may want to call when notifying user about the progress being made when you pack or extract files from an archive. You need to store the value at some place if you want to use it; you can use ''hArcData'' that you have returned by [[OpenArchive]] to identify that place.

Revision as of 14:51, 18 April 2006

This function allows you to notify user about the progress when you un/pack files.

 void __stdcall SetProcessDataProc (HANDLE hArcData, tProcessDataProc pProcessDataProc);

Description

  • pProcessDataProc contains a pointer to a function that you may want to call when notifying user about the progress being made when you pack or extract files from an archive. You need to store the value at some place if you want to use it; you can use hArcData that you have returned by OpenArchive to identify that place.