Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenlzexpand.h
Go to the documentation of this file.
00001 #ifndef _LZEXPAND_H 00002 #define _LZEXPAND_H 00003 00004 #ifdef __cplusplus 00005 extern "C" { 00006 #endif 00007 #define LZERROR_BADINHANDLE (-1) 00008 #define LZERROR_BADOUTHANDLE (-2) 00009 #define LZERROR_READ (-3) 00010 #define LZERROR_WRITE (-4) 00011 #define LZERROR_GLOBALLOC (-5) 00012 #define LZERROR_GLOBLOCK (-6) 00013 #define LZERROR_BADVALUE (-7) 00014 #define LZERROR_UNKNOWNALG (-8) 00015 LONG WINAPI CopyLZFile(INT,INT); 00016 INT WINAPI GetExpandedNameA(LPSTR,LPSTR); 00017 INT WINAPI GetExpandedNameW(LPWSTR,LPWSTR); 00018 VOID APIENTRY LZClose(INT); 00019 LONG APIENTRY LZCopy(INT,INT); 00020 VOID WINAPI LZDone(VOID); 00021 INT WINAPI LZInit(INT); 00022 INT WINAPI LZOpenFileA(LPSTR,LPOFSTRUCT,WORD); 00023 INT WINAPI LZOpenFileW(LPWSTR,LPOFSTRUCT,WORD); 00024 INT WINAPI LZRead(INT,LPSTR,INT); 00025 LONG WINAPI LZSeek(INT,LONG,INT); 00026 INT WINAPI LZStart(VOID); 00027 #ifdef UNICODE 00028 #define GetExpandedName GetExpandedNameW 00029 #define LZOpenFile LZOpenFileW 00030 #else 00031 #define GetExpandedName GetExpandedNameA 00032 #define LZOpenFile LZOpenFileA 00033 #endif 00034 #ifdef __cplusplus 00035 } 00036 #endif 00037 #endif Generated on Fri May 25 2012 04:30:11 for ReactOS by
1.7.6.1
|