Implement LZDone in lzexpand, as the 32 bit one moved to kernel.

This commit is contained in:
Vincent Béron 2005-08-11 10:58:35 +00:00 committed by Alexandre Julliard
parent cb52019ea0
commit a2e0b21562
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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");
}