ICopyHook::CopyCallback Method

Determines whether the Shell will be allowed to move, copy, delete, or rename a folder or printer object.

Syntax

UINT CopyCallback(      
    HWND hwnd,     UINT wFunc,     UINT wFlags,     LPCTSTR pszSrcFile,     DWORD dwSrcAttribs,     LPCTSTR pszDestFile,     DWORD dwDestAttribs );

Parameters

hwnd
A handle to the window that the copy hook handler should use as the parent for any user interface elements the handler may need to display. If FOF_SILENT is specified, the method should ignore this parameter.
wFunc
The operation to perform. This parameter can be one of the values listed under the wFunc member of the SHFILEOPSTRUCT structure.
wFlags
The flags that control the operation. This parameter can be one or more of the values listed under the fFlags member of the SHFILEOPSTRUCT structure.

For printer copy hooks, this value is one of the following values defined in Shellapi.h.

PO_DELETE
A printer is being deleted. pszSrcFile points to the full path to the specified printer.
PO_RENAME
A printer is being renamed. The pszSrcFile parameter points to the printer's new name. The pszDestFile parameter points to the old name.
PO_PORTCHANGE
A printer's port is changing. The pszSrcFile parameter points to the printer's new port. The pszDestFile parameter points to the old port. This message is supported only by Microsoft Windows 95, Windows 98, and Windows Millennium Edition (Windows Me).
PO_REN_PORT
Not supported. Do not use.
pszSrcFile
The address of a string that contains the name of the source folder.
dwSrcAttribs
The attributes of the source folder. This parameter can be a combination of any of the file attribute flags (FILE_ATTRIBUTE_*) defined in the Windows header files.
pszDestFile
The address of a string that contains the name of the destination folder.
dwDestAttribs
The attributes of the destination folder. This parameter can be a combination of any of the file attribute flags (FILE_ATTRIBUTE_*) defined in the Windows header files.

Return Value

Returns an integer value that indicates whether the Shell should perform the operation. It can be one of the following:

IDYESAllows the operation.
IDNOPrevents the operation on this folder but continues with any other operations that have been approved (for example, a batch copy operation).
IDCANCELPrevents the current operation and cancels any pending operations.

Remarks

The Shell calls each copy hook handler registered for a folder or printer object until all the handlers have been called, or until one of them returns IDNO or IDCANCEL.

Copy hook handlers for folders are registered under the following key.

HKEY_CLASSES_ROOT
     Directory
          Shellex
               CopyHookHandlers
                    your_copyhook
                         (Default) = {copyhook CLSID value}
Copy hook handlers for printers are registered under the following key.
HKEY_CLASSES_ROOT
     Printers
          Shellex
               CopyHookHandlers
                    your_copyhook
                         (Default) = {copyhook CLSID value}

When this method is called, the Shell initializes the ICopyHook interface directly without using an IShellExtInit interface first.

See Also

SHFileOperation
Tags :


Page view tracker