Delete now useless code
authorHervé Poussineau <hpoussin@reactos.org>
Sun, 2 Jul 2006 21:35:31 +0000 (21:35 +0000)
committerHervé Poussineau <hpoussin@reactos.org>
Sun, 2 Jul 2006 21:35:31 +0000 (21:35 +0000)
svn path=/trunk/; revision=22782

reactos/dll/win32/lzexpand/lz32.def [deleted file]
reactos/dll/win32/lzexpand/lz32.rbuild [deleted file]
reactos/dll/win32/lzexpand/lz32.rc [deleted file]
reactos/dll/win32/lzexpand/lzexpand_main.c [deleted file]

diff --git a/reactos/dll/win32/lzexpand/lz32.def b/reactos/dll/win32/lzexpand/lz32.def
deleted file mode 100644 (file)
index 6ecbbbe..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-; File generated automatically from lzexpand/lz32.spec; do not edit!
-
-LIBRARY lz32.dll
-
-EXPORTS
-CopyLZFile@8=KERNEL32.CopyLZFile
-GetExpandedNameA@8=KERNEL32.GetExpandedNameA
-GetExpandedNameW@8=KERNEL32.GetExpandedNameW
-LZClose@4=KERNEL32.LZClose
-;LZCloseFile
-LZCopy@8=KERNEL32.LZCopy
-;LZCreateFileW
-LZDone@0=KERNEL32.LZDone
-LZInit@4=KERNEL32.LZInit
-LZOpenFileA@12=KERNEL32.LZOpenFileA
-LZOpenFileW@12=KERNEL32.LZOpenFileW
-LZRead@12=KERNEL32.LZRead
-LZSeek@12=KERNEL32.LZSeek
-LZStart@0=KERNEL32.LZStart
diff --git a/reactos/dll/win32/lzexpand/lz32.rbuild b/reactos/dll/win32/lzexpand/lz32.rbuild
deleted file mode 100644 (file)
index 67cd488..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-<module name="lz32" type="win32dll" baseaddress="${BASEADDRESS_LZ32}" installbase="system32" installname="lz32.dll">
-       <importlibrary definition="lz32.def" />
-       <include base="lz32">.</include>
-       <define name="_DISABLE_TIDENTS" />
-       <define name="__USE_W32API" />
-       <library>ntdll</library>
-       <library>kernel32</library>
-       <file>lzexpand_main.c</file>
-       <file>lz32.rc</file>
-</module>
diff --git a/reactos/dll/win32/lzexpand/lz32.rc b/reactos/dll/win32/lzexpand/lz32.rc
deleted file mode 100644 (file)
index e1a9dac..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-#define REACTOS_VERSION_DLL
-#define REACTOS_STR_FILE_DESCRIPTION   "Lempel-Ziv Expander\0"
-#define REACTOS_STR_INTERNAL_NAME      "lz32\0"
-#define REACTOS_STR_ORIGINAL_FILENAME  "lz32.dll\0"
-#include <reactos/version.rc>
diff --git a/reactos/dll/win32/lzexpand/lzexpand_main.c b/reactos/dll/win32/lzexpand/lzexpand_main.c
deleted file mode 100644 (file)
index 0d71cdb..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * LZ Decompression functions
- *
- * Copyright 1996 Marcus Meissner
- *
- * 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
- */
-
-#include "windows.h"
-
-BOOL STDCALL
-DllMain(HANDLE hDll,
-       DWORD dwReason,
-       LPVOID lpReserved)
-{
-   return TRUE;
-}