Up

_7zCallback

Call a function for each extracted file, with or without error.
Note : the ObjLZMA object is automatically created, you must NOT use
lzmaCreate.
Warning : the prototype is only __callback__ and __user_parameter__, no lzma object !

Prototype :

fun [fun [ObjLZMA u0 S S I I I] u1 u0] ObjLZMA

Return : ObjLZMA usually not applicable.

See also

Example

fun cb7z (blurb, user_parameter, archive, item, isdir, size, state)=
	// do something
	0;;

fun main ()=
	_showconsole;
	...
	lzmaCallback @cb7z "CB";
	...