Implement LZDone in lzexpand, as the 32 bit one moved to kernel.
This commit is contained in:
parent
cb52019ea0
commit
a2e0b21562
|
@ -6,7 +6,7 @@
|
|||
6 pascal -ret16 LZClose(word) LZClose16
|
||||
7 pascal -ret16 LZStart() LZStart16
|
||||
8 pascal CopyLZFile(word word) CopyLZFile16
|
||||
9 pascal -ret16 LZDone() LZDone
|
||||
9 pascal -ret16 LZDone() LZDone16
|
||||
10 pascal -ret16 GetExpandedName(str ptr) GetExpandedName16
|
||||
#11 WEP
|
||||
#12 ___EXPORTEDSTUB
|
||||
|
|
|
@ -141,3 +141,12 @@ LONG WINAPI CopyLZFile16( HFILE16 src, HFILE16 dest )
|
|||
TRACE("(%d,%d)\n",src,dest);
|
||||
return LZCopy16(src,dest);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* LZDone (LZEXPAND.9)
|
||||
*/
|
||||
void WINAPI LZDone16(void)
|
||||
{
|
||||
TRACE("(void)\n");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue