Commit 43e12ae2 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

VcpQueueDelete() does not have a LPEXPANDVTBL parameter.

parent 3eb3569b
......@@ -322,7 +322,6 @@ RETERR16 WINAPI VcpQueueDelete16(
LPCSTR lpszDstFileName,
LPCSTR lpszDstDir,
LOGDISKID16 ldidDst,
LPEXPANDVTBL lpExpandVtbl,
LPARAM lParamRef
)
{
......@@ -335,8 +334,7 @@ RETERR16 WINAPI VcpQueueDelete16(
vfsDst.vhstrDir = vsmStringAdd16(lpszDstDir);
vfsDst.vhstrFileName = vsmStringAdd16(lpszDstFileName);
return VCP_VirtnodeCreate(NULL, &vfsDst, VNFL_DELETE, lParamRef,
lpExpandVtbl);
return VCP_VirtnodeCreate(NULL, &vfsDst, VNFL_DELETE, lParamRef, 0);
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment