mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
OnCopyData
This commit is contained in:
parent
3b853f13ac
commit
2e8aab380f
2 changed files with 6 additions and 2 deletions
|
@ -2,7 +2,8 @@
|
||||||
* PROJECT: ReactOS Explorer
|
* PROJECT: ReactOS Explorer
|
||||||
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
||||||
* PURPOSE: AppBar implementation
|
* PURPOSE: AppBar implementation
|
||||||
* COPYRIGHT: Copyright 2025 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
* COPYRIGHT: Copyright 2008 Vincent Povirk for CodeWeavers
|
||||||
|
* Copyright 2025 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
|
@ -2486,7 +2486,10 @@ ChangePos:
|
||||||
|
|
||||||
LRESULT OnCopyData(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
|
LRESULT OnCopyData(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
|
||||||
{
|
{
|
||||||
COPYDATASTRUCT *pCopyData = (COPYDATASTRUCT *)lParam;
|
PCOPYDATASTRUCT pCopyData = (PCOPYDATASTRUCT)lParam;
|
||||||
|
if (!pCopyData)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
switch (pCopyData->dwData)
|
switch (pCopyData->dwData)
|
||||||
{
|
{
|
||||||
case TABDMC_APPBAR:
|
case TABDMC_APPBAR:
|
||||||
|
|
Loading…
Reference in a new issue