mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:55:41 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
37
sdk/include/psdk/lzexpand.h
Normal file
37
sdk/include/psdk/lzexpand.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
#ifndef _LZEXPAND_H
|
||||
#define _LZEXPAND_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#define LZERROR_BADINHANDLE (-1)
|
||||
#define LZERROR_BADOUTHANDLE (-2)
|
||||
#define LZERROR_READ (-3)
|
||||
#define LZERROR_WRITE (-4)
|
||||
#define LZERROR_GLOBALLOC (-5)
|
||||
#define LZERROR_GLOBLOCK (-6)
|
||||
#define LZERROR_BADVALUE (-7)
|
||||
#define LZERROR_UNKNOWNALG (-8)
|
||||
LONG WINAPI CopyLZFile(INT,INT);
|
||||
INT WINAPI GetExpandedNameA(LPSTR,LPSTR);
|
||||
INT WINAPI GetExpandedNameW(LPWSTR,LPWSTR);
|
||||
VOID APIENTRY LZClose(INT);
|
||||
LONG APIENTRY LZCopy(INT,INT);
|
||||
VOID WINAPI LZDone(VOID);
|
||||
INT WINAPI LZInit(INT);
|
||||
INT WINAPI LZOpenFileA(LPSTR,LPOFSTRUCT,WORD);
|
||||
INT WINAPI LZOpenFileW(LPWSTR,LPOFSTRUCT,WORD);
|
||||
INT WINAPI LZRead(INT,LPSTR,INT);
|
||||
LONG WINAPI LZSeek(INT,LONG,INT);
|
||||
INT WINAPI LZStart(VOID);
|
||||
#ifdef UNICODE
|
||||
#define GetExpandedName GetExpandedNameW
|
||||
#define LZOpenFile LZOpenFileW
|
||||
#else
|
||||
#define GetExpandedName GetExpandedNameA
|
||||
#define LZOpenFile LZOpenFileA
|
||||
#endif
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue