| author | ecalot
<ecalot> 2003-10-23 16:37:41 UTC |
| committer | ecalot
<ecalot> 2003-10-23 16:37:41 UTC |
| parent | 92dc63d5c62c53375d07f8ec1a3f725eb6ccdf76 |
| PR/doc/changelog.txt | +7 | -6 |
diff --git a/PR/doc/changelog.txt b/PR/doc/changelog.txt index 1046db7..55bd294 100644 --- a/PR/doc/changelog.txt +++ b/PR/doc/changelog.txt @@ -49,11 +49,11 @@ This program is open source under the GNU General Public License terms - Added full import bmp support - Solved palette import bug * PR 0.7 - x Solved corrupted images on compression bug - - Source ported to several compilers and platforms + - Added Makefile - Moved PG module to compress.c and bmp.c - Moved midi support to mid.c - - Added Makefile + - Solved corrupted images on compression bug + - Source ported to several compilers and platforms 2) ToDo List @@ -62,18 +62,19 @@ This program is open source under the GNU General Public License terms iii) Add resources tree in xml. See the sample resources.xml and folder.xml parsing: -typedef struct { +typedef struct tTag { short int id; + tTag* child; + tTag* next; char* field1; char* field2; }tTag; tTag* getTagStructure(); //initializes -freeTagStruct +freeTagStructure(tTag* structure) int (0 if end) parseNext(char** pString, tTag* tag); - iv) Code the compression algorithms (B3, B4) to optimize the bitmap compiled dat files v) Add a C++ class to use PR