SetProcessDataProc: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
m (backlinks)
Line 6: Line 6:


* ''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.
{{backlink|Packer plugins developer guide|Packer plugins developer guide}}
{{back|Packer plugins developer guide overview|Packer plugins developer guide overview}}
{{back|TProcessDataProc|TProcessDataProc}}

Revision as of 18:49, 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.

Back to Packer plugins developer guide

Back to Packer plugins developer guide overview Back to TProcessDataProc