Merge documentation/status/version into the version code.
diff --git a/dlls/version/info.c b/dlls/version/info.c
index 4730225..590e03b 100644
--- a/dlls/version/info.c
+++ b/dlls/version/info.c
@@ -18,6 +18,9 @@
* 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
+ *
+ * TODO
+ * o Verify VerQueryValue()
*/
#include <stdarg.h>
diff --git a/dlls/version/install.c b/dlls/version/install.c
index 847caa0..295481e 100644
--- a/dlls/version/install.c
+++ b/dlls/version/install.c
@@ -17,6 +17,9 @@
* 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
+ *
+ * TODO
+ * o Check the installation functions.
*/
#include <stdlib.h>
@@ -575,4 +578,3 @@
HeapFree( GetProcessHeap(), 0, wcurd );
return ret;
}
-
diff --git a/documentation/status/version b/documentation/status/version
deleted file mode 100644
index 3c8704f..0000000
--- a/documentation/status/version
+++ /dev/null
@@ -1,20 +0,0 @@
-This file contains information about the versioning libraries.
-They consist of VER.DLL (win16) and VERSION.DLL (win32).
-The implementation can be found in misc/ver.c.
-
-The purpose of this library is to:
- - Extract resource information from possibly compressed files
- - Install dlls including versionchecking
- - Query version dependend variables.
-
-The resource extraction is almost complete. There have been no reports of
-missing functionality, but I am not sure about absolute completeness.
-
-The DLL installation APIs do work, but is probably not correct.
-
-The API to query version dependend variables (VerQueryValue) works for
-both win16/win32 resources, but is probably not correct for some cases.
-
-FIXME:
- - Check the installation functions.
- - Verify VerQueryValue.