VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/shaderlib/wine/include/lzexpand.h@ 53201

Last change on this file since 53201 was 53201, checked in by vboxsync, 10 years ago

Devices/Main: vmsvga updates

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/* Includefile for the decompression library, lzexpand
2 *
3 * Copyright 1996 Marcus Meissner
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19
20#ifndef __WINE_LZEXPAND_H
21#define __WINE_LZEXPAND_H
22
23#ifdef __cplusplus
24extern "C" {
25#endif /* defined(__cplusplus) */
26
27#define LZERROR_BADINHANDLE -1 /* -1 */
28#define LZERROR_BADOUTHANDLE -2 /* -2 */
29#define LZERROR_READ -3 /* -3 */
30#define LZERROR_WRITE -4 /* -4 */
31#define LZERROR_GLOBALLOC -5 /* -5 */
32#define LZERROR_GLOBLOCK -6 /* -6 */
33#define LZERROR_BADVALUE -7 /* -7 */
34#define LZERROR_UNKNOWNALG -8 /* -8 */
35
36VOID WINAPI LZDone(void);
37LONG WINAPI CopyLZFile(HFILE,HFILE);
38HFILE WINAPI LZOpenFileA(LPSTR,LPOFSTRUCT,WORD);
39HFILE WINAPI LZOpenFileW(LPWSTR,LPOFSTRUCT,WORD);
40#define LZOpenFile WINELIB_NAME_AW(LZOpenFile)
41INT WINAPI LZRead(INT,LPSTR,INT);
42INT WINAPI LZStart(void);
43void WINAPI LZClose(HFILE);
44LONG WINAPI LZCopy(HFILE,HFILE);
45HFILE WINAPI LZInit(HFILE);
46LONG WINAPI LZSeek(HFILE,LONG,INT);
47INT WINAPI GetExpandedNameA(LPSTR,LPSTR);
48INT WINAPI GetExpandedNameW(LPWSTR,LPWSTR);
49#define GetExpandedName WINELIB_NAME_AW(GetExpandedName)
50
51#ifdef __cplusplus
52} /* extern "C" */
53#endif /* defined(__cplusplus) */
54
55#endif /* __WINE_LZEXPAND_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette