You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
678 B
49 lines
678 B
#include "shellpch.h"
|
|
#pragma hdrstop
|
|
|
|
#include <lzexpand.h>
|
|
|
|
static
|
|
VOID
|
|
APIENTRY
|
|
LZClose (
|
|
INT oLZFile
|
|
)
|
|
{
|
|
}
|
|
|
|
static
|
|
LONG
|
|
APIENTRY
|
|
LZCopy (
|
|
INT doshSource,
|
|
INT doshDest
|
|
)
|
|
{
|
|
return LZERROR_BADINHANDLE;
|
|
}
|
|
|
|
static
|
|
INT
|
|
APIENTRY
|
|
LZOpenFileW (
|
|
LPWSTR lpFileName,
|
|
LPOFSTRUCT lpReOpenBuf,
|
|
WORD wStyle
|
|
)
|
|
{
|
|
return LZERROR_BADINHANDLE;
|
|
}
|
|
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
|
|
//
|
|
DEFINE_PROCNAME_ENTRIES(lz32)
|
|
{
|
|
DLPENTRY(LZClose)
|
|
DLPENTRY(LZCopy)
|
|
DLPENTRY(LZOpenFileW)
|
|
};
|
|
|
|
DEFINE_PROCNAME_MAP(lz32)
|