Removed INSTALL

This commit is contained in:
slidedraw
2002-04-09 00:22:58 +00:00
parent c711efd2f8
commit ccacf8d04a
4 changed files with 49 additions and 290 deletions

View File

@@ -98,60 +98,3 @@ NOT URGENT:
******************
PRE COLE 2.x TODO:
******************
MEDIUM:
*******
* Check:
+ ends () doesn't should be called more than once
+ if OLEdecode or OLEcode fails, then the stream tree is never freed.
* Rewrite olecode.c to use `test(..,..)' instead of `test_exitf(..,..,dummy())'.
* See the posiblity to convert some #defines functions to real functions,
to get objects of smaller size.
* See mark `/* FIXME MARK 2 */' in oledecod.c.
* Instead using assert, use assert_return or something like that: the
purpose is not abort, but return a error code (like 19, like xls2xml).
* Check all pointer arguments checked != NULL using assert, as well other
parameters must be correct, use assert or assert_return (see up).
* Review error checking system (that means, does all possible errors can
be captured?)
* Add property sets read and create functions (as implemented in LAOLA):
Invent some functions to construct an pps_entry * tree. one could be:
int add_stream (char * stream_name, char * filename, pps_entry * tree)
That function would open filename, calculate its size, and write it tree
as brother. other could be:
int add_directory (char * dir_name, pps_entry * tree)
* Function generate_real_file needs to be checked if it is all correct
there. See /* FIXME MARK 3 */ in olecod.c.
NOT URGENT:
***********
* Check that list->size not have been used as size of file, because it's
the size of the list.
* Change #defines func(..) and its calls in order to make parameters
between parentesis. Don't broke anything.
* Indent all files. Use indent. Check they look ok in 80 columns.
* Change all 4's to sizeof(U32). DANGER: take care don't brake *anything*.
* Insert all streams in sbfile, SDepot, BDepot and Input and *after*
recalculate all sizes and blocks and all that stuff in OLEcode, instead do
it each time we insert one stream (this could lead great performance).