SPFILENOTIFY_FILEINCABINET
[New
- Windows NT]
The
SPFILENOTIFY_FILEINCABINET notification is sent to a callback routine by SetupIterateCabinet
SPFILENOTIFY_FILEINCABINET
Param1 =
(UINT) FileInCabinetInfo;
Param2 =
(UINT) CabinetFile;
Parameters
Param1
Specifies the
address to a FILE_IN_CABINET_INFO
Param2
Pointer to a
null-terminated string that contains the filename of the cabinet file.
Return Values
Your callback
routine should return one of the following.
Value |
Meaning |
FILEOP_SKIP |
Do not
extract the file, skip it. |
FILEOP_DOIT |
Extract the
file. |
If your
callback routine returns FILEOP_DOIT, the name to use for the extracted file
should be specified in the FullTargetName member of the FILE_IN_CABINET_INFO
Note There is no
default cabinet callback routine. The setup application should supply a
callback routine to handle the notifications sent by SetupIterateCabinet.
See Also