82 lines
3.1 KiB
C++
82 lines
3.1 KiB
C++
|
/*
|
||
|
** Command & Conquer Renegade(tm)
|
||
|
** Copyright 2025 Electronic Arts Inc.
|
||
|
**
|
||
|
** This program is free software: you can redistribute it and/or modify
|
||
|
** it under the terms of the GNU General Public License as published by
|
||
|
** the Free Software Foundation, either version 3 of the License, or
|
||
|
** (at your option) any later version.
|
||
|
**
|
||
|
** This program is distributed in the hope that it will be useful,
|
||
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
** GNU General Public License for more details.
|
||
|
**
|
||
|
** You should have received a copy of the GNU General Public License
|
||
|
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
||
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
||
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
||
|
// PARTICULAR PURPOSE.
|
||
|
//
|
||
|
// Copyright (C) 1993-1997 Microsoft Corporation. All Rights Reserved.
|
||
|
//
|
||
|
// MODULE: copyhook.cpp
|
||
|
//
|
||
|
// PURPOSE: Implements the ICopyHook member functions necessary to support
|
||
|
// the copy hook portioins of this shell extension.
|
||
|
// Copy hook handlers are called each time a folder is copied, moved,
|
||
|
// renamed, etc. in the system. Note that the CopyCallback is NOT
|
||
|
// called for each file, but only for entire folders.
|
||
|
//
|
||
|
#include "StdAfx.h"
|
||
|
#include "priv.h"
|
||
|
#include "shellext.h"
|
||
|
|
||
|
|
||
|
//
|
||
|
// FUNCTION: CShellExt::CopyCallback(HWND,
|
||
|
// UINT,
|
||
|
// UINT,
|
||
|
// LPCSTR,
|
||
|
// DWORD,
|
||
|
// LPCSTR,
|
||
|
// DWORD)
|
||
|
//
|
||
|
// PURPOSE: Called by the shell when a folder is being manipulated.
|
||
|
//
|
||
|
// PARAMETERS:
|
||
|
// hwnd - Window handle to use for any UI stuff
|
||
|
// wFunc - what operation is being done
|
||
|
// wFlags - and flags (FOF_*) set in the initial call
|
||
|
// to the file operation
|
||
|
// pszSrcFile - name of the source file
|
||
|
// dwSrcAttribs - file attributes of the source file
|
||
|
// pszDestFile - name of the destiation file (for move and renames)
|
||
|
// dwDestAttribs - file attributes of the destination file
|
||
|
//
|
||
|
// RETURN VALUE:
|
||
|
//
|
||
|
// IDYES - allow the operation
|
||
|
// IDNO - disallow the operation on this file, but continue with
|
||
|
// any other operations (eg. batch copy)
|
||
|
// IDCANCEL - disallow the current operation and cancel any pending
|
||
|
// operations
|
||
|
//
|
||
|
// COMMENTS:
|
||
|
//
|
||
|
|
||
|
STDMETHODIMP_(UINT) CShellExt::CopyCallback(HWND hwnd,
|
||
|
UINT wFunc,
|
||
|
UINT wFlags,
|
||
|
LPCSTR pszSrcFile,
|
||
|
DWORD dwSrcAttribs,
|
||
|
LPCSTR pszDestFile,
|
||
|
DWORD dwDestAttribs)
|
||
|
{
|
||
|
ODS("CShellExt::CopyCallback\r\n");
|
||
|
return IDYES;
|
||
|
}
|