SetChangeVolProc: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
 
m (Backlinks)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
his function allows you to notify user about changing a volume when packing files.
his function allows you to notify user about changing a volume when packing files.


   void __stdcall SetChangeVolProc (HANDLE hArcData, tChangeVolProc pChangeVolProc1);
   void __stdcall SetChangeVolProc (HANDLE hArcData, [[tChangeVolProc]] pChangeVolProc1);


== Description ==
== Description ==


''pChangeVolProc1'' contains a pointer to a function that you may want to call when notifying user to change volume (e.g. insterting another diskette). 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.
''pChangeVolProc1'' contains a pointer to a function that you may want to call when notifying user to change volume (e.g. insterting another diskette). 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|TChangeVolProc|TChangeVolProc}}

Latest revision as of 18:47, 18 April 2006

his function allows you to notify user about changing a volume when packing files.

 void __stdcall SetChangeVolProc (HANDLE hArcData, tChangeVolProc pChangeVolProc1);

Description

pChangeVolProc1 contains a pointer to a function that you may want to call when notifying user to change volume (e.g. insterting another diskette). 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 TChangeVolProc