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( ...@@ -322,7 +322,6 @@ RETERR16 WINAPI VcpQueueDelete16(
LPCSTR lpszDstFileName, LPCSTR lpszDstFileName,
LPCSTR lpszDstDir, LPCSTR lpszDstDir,
LOGDISKID16 ldidDst, LOGDISKID16 ldidDst,
LPEXPANDVTBL lpExpandVtbl,
LPARAM lParamRef LPARAM lParamRef
) )
{ {
...@@ -335,8 +334,7 @@ RETERR16 WINAPI VcpQueueDelete16( ...@@ -335,8 +334,7 @@ RETERR16 WINAPI VcpQueueDelete16(
vfsDst.vhstrDir = vsmStringAdd16(lpszDstDir); vfsDst.vhstrDir = vsmStringAdd16(lpszDstDir);
vfsDst.vhstrFileName = vsmStringAdd16(lpszDstFileName); vfsDst.vhstrFileName = vsmStringAdd16(lpszDstFileName);
return VCP_VirtnodeCreate(NULL, &vfsDst, VNFL_DELETE, lParamRef, return VCP_VirtnodeCreate(NULL, &vfsDst, VNFL_DELETE, lParamRef, 0);
lpExpandVtbl);
} }
/*********************************************************************** /***********************************************************************
......
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