home *** CD-ROM | disk | FTP | other *** search
- /*
- * PECompact v2 LZMA CODEC
- * Copyright (C) 2004 Joergen Ibsen (www.ibsensoftware.com)
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
- #ifndef PEC2_LZMA_CODEC_H_INCLUDED
- #define PEC2_LZMA_CODEC_H_INCLUDED
-
- #include <windows.h>
-
- #include "PEC2CodecSDK.h"
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #ifndef DllExport
- #define DllExport __declspec( dllexport )
- #endif
-
- #define PEC2_LZMA_CODEC_VERSION_MAJOR 1
- #define PEC2_LZMA_CODEC_VERSION_MINOR 4
- #define PEC2_LZMA_CODEC_VERSION ((PEC2_LZMA_CODEC_VERSION_MAJOR*100)+PEC2_LZMA_CODEC_VERSION_MINOR)
-
- DllExport DWORD WINAPI GetNumberOfCodecs(void);
-
- DllExport FARPROC WINAPI CodecGetProcAddress(DWORD dwCodecIndex, LPCSTR pszApi);
-
- #ifdef __cplusplus
- } /* extern "C" */
- #endif
-
- #endif /* PEC2_LZMA_CODEC_H_INCLUDED */
-