Commit a2e0b215 authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

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

parent cb52019e
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
6 pascal -ret16 LZClose(word) LZClose16 6 pascal -ret16 LZClose(word) LZClose16
7 pascal -ret16 LZStart() LZStart16 7 pascal -ret16 LZStart() LZStart16
8 pascal CopyLZFile(word word) CopyLZFile16 8 pascal CopyLZFile(word word) CopyLZFile16
9 pascal -ret16 LZDone() LZDone 9 pascal -ret16 LZDone() LZDone16
10 pascal -ret16 GetExpandedName(str ptr) GetExpandedName16 10 pascal -ret16 GetExpandedName(str ptr) GetExpandedName16
#11 WEP #11 WEP
#12 ___EXPORTEDSTUB #12 ___EXPORTEDSTUB
...@@ -141,3 +141,12 @@ LONG WINAPI CopyLZFile16( HFILE16 src, HFILE16 dest ) ...@@ -141,3 +141,12 @@ LONG WINAPI CopyLZFile16( HFILE16 src, HFILE16 dest )
TRACE("(%d,%d)\n",src,dest); TRACE("(%d,%d)\n",src,dest);
return LZCopy16(src,dest); return LZCopy16(src,dest);
} }
/***********************************************************************
* LZDone (LZEXPAND.9)
*/
void WINAPI LZDone16(void)
{
TRACE("(void)\n");
}
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