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.
35 lines
396 B
35 lines
396 B
/*
|
|
** lzapi.h - Private interface to LZEXPand.LIB.
|
|
*/
|
|
|
|
#ifndef _LZPRIVAPI_
|
|
#define _LZPRIVAPI_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
** Prototypes
|
|
*/
|
|
|
|
// For the time being, private APIS exported
|
|
INT
|
|
LZCreateFileW(
|
|
LPWSTR,
|
|
DWORD,
|
|
DWORD,
|
|
DWORD,
|
|
LPWSTR);
|
|
|
|
VOID
|
|
LZCloseFile(
|
|
INT);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // _LZEXPAND_
|